lilypond-user
[Top][All Lists]
Advanced

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

Re: syntax question


From: Carl Sorensen
Subject: Re: syntax question
Date: Sat, 21 Jun 2008 22:54:53 +0000 (UTC)
User-agent: Loom/3.14 (http://gmane.org/)

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





reply via email to

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