]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/lyric-phrasing.ly
6405262e3e44b6a8a0609c930fa440f78fd9ae95
[lilypond.git] / input / regression / lyric-phrasing.ly
1 \version "2.6.0"
2 \header {
3
4 texidoc = "
5   Normally, the lyric is centered on the note head. However, on
6   melismata, the text is left aligned on the left-side of the note head.
7
8 "
9 }
10
11
12 \score{
13     <<
14          \relative c' \context Voice = "bla" {
15             \autoBeamOff
16             c4( c16 d c b)  c4
17             d16[ e f g]
18             
19         }
20         \lyricsto "bla" \context Lyrics \lyricmode {
21             alllll __ tijd
22             izzz
23         }
24     >>
25     \layout { raggedright = ##t }
26 }