Hello all!
I engrave ancient russian church music in original notation (by \lyricmode) and common score. This is single-voice music: one score + one string of ancient notation ( + one string of words). But SOMETIMES there is TWO strings of ancient notation under 1-2-3 notes. There I use construction with \new Voise inside my music and \lyricsto this voice (new and context).
In case of multiple use of some music I use variables. The problem is: if variable containes \new voice = ... { ... } I can use this voice only once. Secon use has no lyrics to this voice.
What's wrong?
Sample:
kulism = \relative c' { e4( f) g( f) e( f e d) \new Voice = "cdcb" { c( d c b) } a1 }
slov = \lyricmode { mifa solfa mifamire laaaa }
\score
{
<<
\new Staff << \new Voice = "one" { \relative c' \kulism \kulism \kulism } >>
\new Lyrics = "drob" \lyricsto "cdcb" { "malozakr" }
\new Lyrics = "kr" \lyricsto "one" { \slov \slov \slov }
\context Lyrics = "kr" \lyricsto "cdcb" { doredosi }
>>
}
Regards,
Oxana