]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyrics-melisma-faster.ly
* lily/new-lyric-combine-music-iterator.cc (find_voice): allow
[lilypond.git] / input / test / lyrics-melisma-faster.ly
1 \header
2 {
3     texidoc = "A faster lyrics line may be set to a melismatic melody by
4 setting @code{ignoreMelismata}. A tricky aspect is that ignoreMelismata
5 must be set  a syllable too soon."
6     
7 }
8
9
10 \paper {
11     raggedright = ##t
12 }
13
14 \version "2.3.8"
15
16 <<
17     \relative \context Voice = "lahlah" {
18         \set Staff.autoBeaming = ##f 
19         c4
20         \slurDotted
21         f8.[( g16])
22     }
23     \new Lyrics \lyricsto "lahlah" {
24         slo -- ow
25     }
26     \new Lyrics \lyricsto "lahlah" {
27         \set ignoreMelismata = ##t % applies to "fas"
28         go fas -- ter
29         \unset ignoreMelismata
30     }
31 >>