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