Hi Lara,

the quick'n'dirty solution (I still use) is the following:

\version "2.11.55"

refrain = \lyricmode {
    \set stanza = "Refr. "
    bla blu blubb blubb
}

verseOne = \lyricmode {
    \set stanza = "1. "
    one two three four five
}

verseTwo = \lyricmode {
    \set stanza = "2. "
    six se -- ven eight nine
}

refrainTwo = \lyricmode {
    blubb bla dub.
}

refrSkip = \repeat unfold 4 { \skip 1 }

\score {
    <<
    \relative c' {
        c4 d e f g a c d e f g a
    }
    >>
    \addlyrics { \refrain \verseOne \refrainTwo }
    \addlyrics { \refrSkip \verseTwo }
}

The better solution would be to use different context names for the
different parts and address them with \lyricsto.

Dominic


2008/8/18 Lara <[EMAIL PROTECTED]>:
> Hi,
> I have a song that has three parts, first with one line of text, then with two
> lines (and a repeat)and then again with one line.
> I tried to use \set stanza but that didn't work. I also found an old
> conversation in the documentaion where master Mats talks about:
> input/star-spangled-banner.ly, but can't find it anywhere.
> Anyone knows a solution?
>
> Thanks!
> Lara
>
>
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@gnu.org
> http://lists.gnu.org/mailman/listinfo/lilypond-user
>


_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to