]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-new.ly
Add a TODO comment re grace note spacing.
[lilypond.git] / input / regression / lyric-combine-new.ly
1 \version "2.10.0"
2 \header {
3
4   texidoc = "With the @code{\\lyricsto} mechanism, individual lyric
5     lines can be associated with one melody line. For each lyric line,
6     can be tuned whether to follow melismata or not."
7   
8 }
9
10
11 <<
12   \new Voice = "bla" \relative c'' {
13     \autoBeamOff
14     c2( d4) e8[ c b c] f4
15   }
16   \lyricsto "bla"  \new Lyrics  { bla ab blob blob }
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