lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: escaped string


From: Wilbert Berendsen
Subject: Re: escaped string
Date: Sun, 1 Nov 2009 19:48:27 +0100
User-agent: KMail/1.12.2 (Linux/2.6.31-14-generic; KDE/4.3.2; i686; ; )

Op zondag 01 november 2009 schreef Erik:

> \layout {
>  \context {
>   \Staff
>   \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
>   \fontSize = #-2
>  }
> }

You should remove the \ before fontSize. fontSize is not a command but a 
variable that can be set to a value. This should work:

\layout {
  \context {
    \Staff
    \override VerticalAxisGroup #'minimum-Y-extent = #'(-3 . 3)
    fontSize = #-2
  }
}

If you want to change a variable in the middle of music, put
\set before it, like:

{
  c d e f g
  \set fontSize = #-2
  a b c d e
}

best regards,
Wilbert Berendsen

-- 
Frescobaldi, LilyPond editor for KDE: http://www.frescobaldi.org/
Nederlands LilyPond forum: http://www.lilypondforum.nl/




reply via email to

[Prev in Thread] Current Thread [Next in Thread]