Hi there,

On Sat, Jan 27, 2024 at 6:35 AM Silvain Dupertuis <
[email protected]> wrote:

> *Sorry for my question in French on an English-speaking forum... here is
> an Englsh version*
>
> Hello,
> Is there a way to automatically repeat the verse numbers on each line
> when it is defined by \set stanza = "1."
> without repeating this instruction within the verse text
>
> with this structure in the score part, lyrics being defined in variables
> \new Lyrics \lyricsto "VoiceOne" { \set stanza = "1." \VerseOne }
> \new Lyrics \lyricsto "VoiceOne" { \set stanza = "2." \VerseTwo }
> ...
>
> For a 5-verse song, it's best to repeat these verse numbers
>

So as I understand it you want the stanza number at the beginning of each
system such as after line breaks, instead of just the first? If that's the
case maybe try using shortVocalName, like this:

\version "2.25.12"

\new Staff { c' \break c' }
\addlyrics {
  \set stanza = "1."
  \set shortVocalName = \markup \bold \small "1."
  aah aah
}

\addlyrics {
  \set stanza = "2."
  \set shortVocalName = \markup \bold \small "2."
  ooh ooh
}

which gives:

[image: image.png]

-- 
Michael

Reply via email to