]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-new.ly
* lily/text-spanner.cc (brew_molecule): don't do shorten-pair for
[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         \autoBeamOff
13         c2( d4) e8[ c b c] f4
14     }
15     \newaddlyrics "bla" \lyrics \new LyricsVoice { bla ab blob blob }
16     \newaddlyrics "bla" \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     \new Lyrics <<  \newaddlyrics "bla" \lyrics \new LyricsVoice { nes ted lyrics voice with more words than no tes } >>
31     >>
32
33     }