]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-combine-new.ly
* scm/paper.scm (set-staff-size): new function: set default
[lilypond.git] / input / regression / lyric-combine-new.ly
1 \version "2.1.10"
2 \header {
3
4     texidoc = "With the newaddlyrics mechanism, individual lyric lines
5     can be associated with one melody line. For each lyric line, can
6     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 LyricsVoice { bla ab blob blob }
17     \lyricsto "bla" \lyrics \new LyricsVoice {
18         bla 
19
20         \property LyricsVoice . ignoreMelismata = ##t
21         
22         blob
23
24         %% note: effect of ignoreMelismata delayed one time step.
25         \property LyricsVoice . ignoreMelismata \unset
26         blob
27         
28         blob
29     }
30     
31     \new Lyrics <<  \lyricsto "bla" \lyrics \new LyricsVoice { nes ted lyrics voice with more words than no tes } >>
32     >>
33
34     }