]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-ignore-melisma-alignment.ly
994b8cfc0482d3fa584ef2ca310214cc2523b548
[lilypond.git] / input / regression / lyric-ignore-melisma-alignment.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "If @code{ignoreMelismata} is set, lyrics should remain
5 center-aligned.
6 "
7 }
8
9 notes = \relative c' {
10   \time 2/4
11   \slurDashed
12   c8 e d( f)
13 }
14
15 lyricsI = \lyricmode {
16   \set ignoreMelismata = ##t
17   One two three four
18 }
19
20 lyricsII = \lyricmode {
21   One two Whee! __
22 }
23
24 <<
25   \new Voice = "melody" \notes
26   \new Lyrics \lyricsto "melody" \lyricsI
27   \new Lyrics \lyricsto "melody" \lyricsII
28 >>
29