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/


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to