lilypond-user
[Top][All Lists]
Advanced

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

Re: vertical distance within verses


From: Mats Bengtsson
Subject: Re: vertical distance within verses
Date: Thu, 19 Dec 2024 11:13:32 +0100
User-agent: Mozilla Thunderbird


On 2024-12-19 10:20, Robert Garrigos wrote:
I have a song which sets lyrics like this:


\score {
<<
\new Voice = "mel" {
\relative c'' {
\clef treble
\key c \major
\time 6/8
| g8. e16 g8 a8. f16 a8
| g4 (f8) e4.
}
}
\new Lyrics \with {
\override VerticalAxisGroup.nonstaff-relatedstaff-spacing.padding = #2
}
\lyricsto mel {
\lyricmode {
<<
{
La pas -- to -- ra Ca -- te -- ri -- na
}
\new Lyrics = "secondVerse" \with { alignBelowContext = "catala" }
{
Oh, bons pas -- tors jo di -- ri -- a
}
\new Lyrics = "therdVerse" \with { alignBelowContext = "catala" }
{
Sant Jo -- sep per la mun -- ta -- nya
}
>>
}
}
>>
\layout {
}
}

Which gives me this:


How can I set a wider vertical space within verses?

Try VerticalAxisGroup.nonstaff-nonstaff-spacing.padding! For example, to do the setting once for all Lyric contexts in the score, replace your current empty \layout{} by

  \layout {
    \context{
      \Lyrics
      \override VerticalAxisGroup.nonstaff-nonstaff-spacing.padding = #2
    }
  }

   /Mats


reply via email to

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