>>>>> "Roy" == Roy Rankin <[EMAIL PROTECTED]> writes:
Roy> It would seem that the vertical size of the volta spanning bar is
Roy> not taken into account in the vertical spacing. I have tried setting
Roy> Score.minVerticalAlign (Commented out in example) but this mostly increases
Roy> the space between the staff and its lyrics, not between the lyrics
Roy> and the staff below.
It actually increases the space between staves --- and the lyrics are
counted as a staff for this purpose.
Roy> Although this problem seems like a bug to me, how can I increase
Roy> the spacing between the lyrics and the staff below when using
Roy> multiple staffs.
I agree it seems to be a bug.
One way around would be to put in an empty lyrics staff:
tune = \notes\relative c' {
\repeat volta 2 { c2 d }
\alternative { { e1 } { e2 r2 }}
}
words = \lyrics {
main part repeat1 repeat2
}
\score {
<
%\property Score.minVerticalAlign = "30."
\addlyrics
\context Staff = "S1" { \$tune }
<
\context Lyrics = "L1" \$words % this line here.
\context Lyrics \lyrics { "" }
>
\addlyrics
\context Staff = "S2" { \$tune }
< \context Lyrics = "L2" \$words >
>
\paper {}
}