Hi all,
is there a way to "continue" with the voice "myVoice" in the second
polyphonic passage instead of creating a new one so that the lyrics "wordsI"
carry on and I don't have to create an additional lyrics context?
Thanks in advance
%%%%%%%%%%%%%%%%%%%%%%
\version "2.20.0"
wordsI = \lyricmode {
This is a test "1" "2"
This is a test "1" "2"
}
wordsII = {
\lyricmode { te -- st te --st }
}
\score {
<<
\new Staff = "testStaff" {
\new Voice = "first" \relative c'{
c4 d e f |
<<
\relative c''{ \voiceOne c2 g }
\new Voice = "second" \relative c'' { \voiceTwo g f }
>>
\oneVoice
c4 d e f |
<<
\relative c''{ \voiceOne c2 g }
\new Voice = "second" \relative c'' { \voiceTwo g f }
>>
\oneVoice
}
}
\new Lyrics = "firstVoice" {
\lyricsto "first" \wordsI
}
\new Lyrics = "secondVoice" \with { alignAboveContext = "testStaff" }{
\lyricsto "second" \wordsII
}
>>
}
%%%%%%%%%%%%%%%%%%%%%%