2008/11/13 Simon Art <[EMAIL PROTECTED]>:
> Hi all,

> Does anybody know how I can increase the vertical spacing only between
> the lyrics of these two different voices ? Within the same voice, the
> vertical spacing between the different verses should stay the same as
> before.
I use "template" like this (very schematic):

\score {
  \new ChoirStaff <<
    \new Staff = "upperstaff" <<
      \new Voice = "upper" {
        \uppermelody
      }
      \new Lyrics = "upperlyr" with {
        % this adds some space below:
        \override VerticalAxisGroup #'minimum-Y-extent = #'(-2 . 0)
      } \lyricsto "upper" \upperlyrics
    >>
    %
    \new Staff = "lowerstaff" <<
      \new Voice = "lower" {
        \lowermelody
      }
      \new Lyrics = "lowerlyr" with {
        % this adds some space above:
        \override VerticalAxisGroup #'minimum-Y-extent = #'(-0 . 2)
        alignAboveContext = "lowerstaff"
      } \lyricsto "lower" \lowerlyrics
    >>
  >>
}

You can increase all numbers, of course.

And you can manage overall parameters in \layout{}, for \context{\Lyrics},
while above are for specified Lyics only.

> Simon

-- 
Dmytro O. Redchuk


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

Reply via email to