James E. Bailey <jamesebailey <at> mac.com> writes:

> 
> http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Text-marks#Text-marks
> Printing marks on every staff
> 
> Although text marks are normally only printed above the topmost staff,  
> they may also be printed on every staff.
> 
>           {
>             \new Score \with {
>               \remove "Mark_engraver"
>             }
>             <<
>               \new Staff \with {
>                 \consists "Mark_engraver"
>               }
>               { c''1 \mark "molto" c'' }
>               \new Staff \with {
>                 \consists "Mark_engraver"
>               }
>               { c'1 \mark "molto" c' }
>             >>
>           }
> That's the only place I've ever seen a Score. But it's a context, I'll  
> read up on it.
> Am 19.06.2008 um 13:43 schrieb Mats Bengtsson:
> 

You can also do:

<<
 \new Staff 
 { c''1 \mark "molto" c'' }
 \new Staff \with {
   \consists "Mark_engraver"
 }
 { c'1 \mark "molto" c' }
>>

i.e., let the Score take the mark for the top staff (so you don't need to
explicitly instantiate the Score) and then add the Mark_engraver to the
rest of the staves.

Carl



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

Reply via email to