]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-switch-voice-2.ly
4236de7c86d13132e55b62c5e96c4a589f96aa14
[lilypond.git] / input / regression / lyric-combine-switch-voice-2.ly
1 \header
2 {
3 texidoc = "switching voices in the middle of the lyrics is possible using @code{lyricsto}."
4   }
5 \version "2.16.0"
6
7 <<
8   \relative \new Voice = "lahlah" {
9     c4
10     <<
11       \new Voice = "alternative" {
12         \voiceOne
13         \override NoteColumn #'force-hshift = #-3
14         a'4 
15       } 
16       { \voiceTwo
17         c,4
18         \oneVoice
19       } >>
20     c4 c 
21     
22   }
23   \new Lyrics \lyricsto "lahlah" {
24     \set associatedVoice = alternative
25     two  
26     \set associatedVoice = lahlah
27     two this
28   } 
29 >>