Hi,
I have no problems displaying stanza numbers on multiple systems, except
when I try to wrap the \set stanza command in a variable, it only displays
the first one.
In the MWE below, only the first stanza number is printed; but if you
uncomment
\set stanza = #"1"
the second one appears as I expected.
Why is this? (To be clear, I would *like* to be able to display stanza
numbers on multiple (specific) systems.)
Thanks!
-David
\version "2.24.0"
verse = \set stanza = #"1"
text = \lyricmode {
\verse
One two
\verse
% \set stanza = #"1"
three
}
notes = { c' d' \break e' }
\score {
<<
\new Voice = "tune" { \notes }
\new Lyrics { \lyricsto "tune" \text }
>>
}