bug-lilypond
[Top][All Lists]
Advanced

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

Re: no space after key signature unless time signature


From: Paul Scott
Subject: Re: no space after key signature unless time signature
Date: Thu, 19 Feb 2004 02:14:37 -0700
User-agent: Mozilla Thunderbird 0.5 (X11/20040209)

Mats Bengtsson wrote:

Thanks.  Using:
\score
   \context Staff <<
      \global
      { \part }
   >>
}

for a part and
\score
   \context StaffGroup <<
      \global
      \new Staff { \part1 }
      \new Staff { \part2 }
   >>
}

for similar parts seems to work (key signature spacing is good). I will now see what happens if I go back to 's' in the global block.


In the second example, you will get an additional stave.
You may want to use the following construct instead.

\score
   \context StaffGroup <<
      \new Staff << \global \part1 >>
      \new Staff { \part2 }
   >>
}

My second example gives me a staff group consisting of one staff for part a and another staff for part b. The global does not create a staff (because it contains no notes?). This is exactly what I want.

Thanks,

Paul







reply via email to

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