On 2020-04-10 12:46 am, Bernhard Kleine wrote:
I wonder :
Tenor = \new Staff \with {
instrumentName = "tenor"
\clef "treble_8"
} <<
\new Voice = "TI" { \voiceOne \TenorVoiceI }
\new Voice = "TII" { \voiceTwo \TenorVoiceII }
\new Voice = "TIII" { \voiceOne \TenorVoiceIII }
\new Lyrics \with { alignAboveContext = "tenor" } \lyricsto "TIII" {
\VerseTenorVoiceIII }
\new Lyrics \lyricsto "TI" { \VerseTenorVoiceI }
\new Lyrics \lyricsto "TII" { \VerseTenorVoiceII }
>>
Why is the most upper text not above the staff?
Make sure to name the Staff context:
%%%%
Tenor = \new Staff = "tenor" \with { % . . .
%%%%
-- Aaron Hill