]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-new.ly
*** empty log message ***
[lilypond.git] / input / regression / lyric-combine-new.ly
1 \version "2.2.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 \score {
11 <<
12     \notes \context Voice = "bla" \relative c'' {
13         \autoBeamOff
14         c2( d4) e8[ c b c] f4
15     }
16     \lyricsto "bla" \lyrics \new Lyrics { bla ab blob blob }
17     \lyricsto "bla" \lyrics \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" \lyrics \new Lyrics { nes ted lyrics voice with more words than no tes } >>
32
33     }