]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-new.ly
* mf/feta18.mf: design size is 18 not 22.5
[lilypond.git] / input / regression / lyric-combine-new.ly
1 \header {
2
3     texidoc = "With the newaddlyrics mechanism, individual lyric lines
4     can be associated with one melody line. For each lyric line, can
5     be tuned whether to follow melismata or not."
6     
7 }
8
9 \score {
10 <<
11     \notes \context Voice = "bla" \relative c'' {
12         c2( d4) e4 ( c2 d4) e4 
13     }
14     \newaddlyrics "bla" \lyrics \new LyricsVoice { bla ab blob blob }
15     \newaddlyrics "bla"
16     \lyrics \new LyricsVoice {
17         bla 
18
19         \property LyricsVoice . ignoreMelismata = ##t
20         
21         blob
22
23         %% note: effect of ignoreMelismata delayed one time step.
24         \property LyricsVoice . ignoreMelismata \unset
25         blob
26         
27         blob
28     }
29     >>
30     }