Op maandag 08 maart 2010 schreef Patrick:
> When I compile the following:
>
> \version "2.12.2"
> S = \relative g'' {
> \appoggiatura g16 f1
> }
>
> \score {
> \new ChoirStaff <<
> \time 4/4
> \new Staff { \S }
>
> \layout { }
> \midi { }
> }
>
> I get the output attached, which shows two instances of the time
> signature
Move the \time statement in the Staff and use { } instead of << >>:
\version "2.12.2"
S = \relative g'' {
\appoggiatura g16 f1
}
\score {
\new ChoirStaff <<
\new Staff {
\time 4/4
\S
}
>>
\layout { }
\midi { }
}
best regards,
Wilbert Berendsen
--
Frescobaldi, LilyPond editor for KDE: http://www.frescobaldi.org/
Nederlands LilyPond forum: http://www.lilypondforum.nl/
_______________________________________________
lilypond-user mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/lilypond-user