Hi,
I'm a beginner. I apologize if my question is dumb.
I used this template:
http://www.lilypond.org/doc/v2.19/Documentation/learning/satb-on-four-staves
Bar #3 and #4 are repeated with different lyrics, so I need two stanzas
that align with these notes.
I made new variables for the second stanza (sopranowordstwo,
altowordstwo, tenorwordstwo and basswordstwo) but if I just use \new
Lyrics \lyricsto in the \score {} environment the lyrics are displayed
at the beginning of the song.
How can I make sure that the lyrics of the second stanza are aligned
with bar #3 and #4?
Clarissa
global = {
\key c \major
\time 4/4
}
sopranonotes = \relative c'' {
g g g g g g g g \repeat volta 2 { a a a a a a a a }
}
sopranowordsone = \lyricmode { la la la la la la la la \set stanza = #"1. " ni ni ni ni ni ni ni ni }
sopranowordstwo = \lyricmode { \set stanza = #"2. " pu pu pu pu pu pu pu pu }
altonotes = \relative c' {
c c c c c c c c \repeat volta 2 { d d d d d d d d }
}
altowordsone = \lyricmode { la la la la la la la la \set stanza = #"1. " ni ni ni ni ni ni ni ni }
altowordstwo = \lyricmode { \set stanza = #"2. " pu pu pu pu pu pu pu pu }
tenornotes = {
\clef "G_8"
g g g g g g g g \repeat volta 2 { a a a a a a a a }
}
tenorwordsone = \lyricmode { la la la la la la la la \set stanza = #"1. " ni ni ni ni ni ni ni ni }
tenorwordstwo = \lyricmode { \set stanza = #"2. " pu pu pu pu pu pu pu pu }
bassnotes = {
\clef bass
c c c c c c c c \repeat volta 2 { d d d d d d d d }
}
basswordsone = \lyricmode { la la la la la la la la \set stanza = #"1. " ni ni ni ni ni ni ni ni }
basswordstwo = \lyricmode { \set stanza = #"2. " pu pu pu pu pu pu pu pu }
\score {
\new ChoirStaff <<
\new Staff <<
\new Voice = "soprano" <<
\global
\sopranonotes
>>
\new Lyrics \lyricsto "soprano" \sopranowordsone
\new Lyrics \lyricsto "soprano" \sopranowordstwo
>>
\new Staff <<
\new Voice = "alto" <<
\global
\altonotes
>>
\new Lyrics \lyricsto "alto" \altowordsone
\new Lyrics \lyricsto "alto" \altowordstwo
>>
\new Staff <<
\new Voice = "tenor" <<
\global
\tenornotes
>>
\new Lyrics \lyricsto "tenor" \tenorwordsone
\new Lyrics \lyricsto "tenor" \tenorwordstwo
>>
\new Staff <<
\new Voice = "bass" <<
\global
\bassnotes
>>
\new Lyrics \lyricsto "bass" \basswordsone
\new Lyrics \lyricsto "bass" \basswordstwo
>>
>>
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user