>
> Which technical limitation do you mean exactly?

Correct me if I'm wrong, but it seems that lyrics can't be added to a
variable that is chopped up in tags. In the example below (similar to my
first one), measures 1 to 4 have lyrics but 5 and onwards don't, even using
the same staff.

%%SOF
\version "2.26.0"
melody = \new Voice = "melody" {
  \tag #'(verse)   { c''1 d'' e'' f'' }
  \tag #'(refrain) { g'1 a' b' }
} % end var & voice
singer = {
  \new Staff {
    \keepWithTag #'(verse) \melody
    \keepWithTag #'(refrain) \melody
  }
}
niceLyrics = \lyricmode { I a e a o o o }
singerAndLyrics = {
  <<
    \singer
    \new Lyrics \lyricsto "melody" { \niceLyrics }
  >>
}
\score { \singerAndLyrics }
%%EOF

Em dom., 31 de mai. de 2026 às 11:26, Lukas-Fabian Moser <[email protected]>
escreveu:

> Hi Lucas,
>
> Am 31.05.26 um 15:58 schrieb Lucas Pinke:
> > Thank you both for the help! I'm a bit sad that there is this
> > "technical limitation" in Lilypond, but this seems more like a PEBKAC.
> > As Kieren rightly put it... my code is more complicated than it has to
> be.
>
> Which technical limitation do you mean exactly? I'm pretty sure we'll be
> able fix most problems that might arise, with any approach.
>
> Lukas
>
>

Reply via email to