]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-derived-voice.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / lyric-combine-derived-voice.ly
1 \version "2.19.21"
2 \header {
3   texidoc = "For Voice-derived contexts like CueVoice, the lyrics should
4 still start with the first note."
5 }
6
7 \score {
8   \new Staff <<
9     \new Voice \relative {
10       g'2 
11       <<
12           { \voiceOne r2 }
13           \new CueVoice = "cue" { \voiceTwo g4 g }
14       >>
15   }
16   \context Lyrics \lyricsto "cue" { A B }
17   >>
18 }