Hello! I have a composition in which the singer uses rhythmic
and conventional staffs back and forth. However, while trying to clean up
my past spaghetti code, I've noticed I couldn't display lyrics after the
first staff.
Below is an MWE of my situation. I'd like for the rest of the lyrics to
appear on the conventional 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 RhythmicStaff \with {\RemoveAllEmptyStaves} { \keepWithTag #'(verse)
\melody }
\break
\new Staff \with {\RemoveAllEmptyStaves} { \keepWithTag #'(refrain)
\melody }
}
niceLyrics = \lyricmode { I a e a o o o }
singerAndLyrics = {
<<
\singer
\new Lyrics \lyricsto "melody" { \niceLyrics }
>>
}
\score { \singerAndLyrics }
%%EOF
[image: image.png]