]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-new.ly
Merge commit 'ce4b499'
[lilypond.git] / input / regression / lyric-combine-new.ly
1 \version "2.10.0"
2 \header {
3   texidoc = "With the @code{\\lyricsto} mechanism, individual lyric
4     lines can be associated with one melody line. Each lyric line
5 can be tuned to either follow or ignore melismata."
6 }
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  { bla ab blob blob }
15   \lyricsto "bla"  \new Lyrics  {
16     bla 
17
18     \set ignoreMelismata = ##t
19     
20     blob
21
22     %% note: effect of ignoreMelismata delayed one time step.
23     \unset ignoreMelismata 
24     blob
25     
26     blob
27   }
28   
29   \lyricsto "bla"  \new Lyrics  {
30     nes ted lyrics voice with more words than no tes
31   }
32 >>
33