\layout { \context{ \Voice \name CVoice \alias Voice } \context { \Staff \accepts CVoice } } #(ly:set-option 'point-and-click #f) % For Voice-derived contexts, lyrics start one note too late! % In particular, if you use CueVoice instead of voice (or our own CVoice % defined above), lyrics will be off by 1 note \score { \new Staff << \new Voice \relative c'' { g2 g2 << { \voiceOne R1 } \new CVoice = "cue" { \voiceTwo g4 g g g } >> g2 g2 << { \voiceOne R1 } \context Voice = "cue1" { \voiceTwo g4 g g g } >> g2 g2 << { \voiceOne R1 } \new CueVoice = "cue2" { \voiceTwo g4 g g g } >> g2 g2 } \context Lyrics \lyricsto "cue" { do re mi fa } \context Lyrics \lyricsto "cue1" { do re mi fa } \context Lyrics \lyricsto "cue2" { do re mi fa } >> }