]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/vocal/lyric-combine.ly
c97b0f025ad09e78d9a9acb962b9cc4854058a53
[lilypond.git] / input / lsr / vocal / lyric-combine.ly
1 \version "2.10.12"
2
3 \header { texidoc = "
4 With the @code{\lyricsto} mechanism, individual lyric lines can be
5 associated with one melody line. For each lyric line, they can be tuned
6 whether to follow melismata or not. 
7 " }
8
9 <<
10   \new Voice = "bla" \relative c'' {
11     \autoBeamOff
12     c2( d4) e8[ c b c] f4
13   }
14   \lyricsto "bla"  \new Lyrics { 
15     bla ab blob blob 
16   }
17   \lyricsto "bla"  \new Lyrics {
18     bla 
19
20     \set ignoreMelismata = ##t
21     
22     blob
23
24     %% note: effect of ignoreMelismata delayed one time step.
25     \unset ignoreMelismata 
26     blob
27     
28     blob
29   }
30   
31   \lyricsto "bla"  \new Lyrics {
32     nes ted lyrics voice with more words than no tes
33   }
34 >>
35   
36