]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyric-phrasing.ly
7f0875362a48280e4c76644d8a7dffb44cdc5388
[lilypond.git] / input / test / lyric-phrasing.ly
1 \header{
2 filename =       "twinkle-pop.ly";
3 xtitle =         "Ah, vous dirais-je, maman ";
4 description =    "twinkle twinkle in pop-song-settings";
5 composer =       "traditional";
6 enteredby =      "HWN, chords by Johan Vromans";
7 copyright =      "public domain";
8 }
9
10 \version "1.3.117";
11
12 m = \notes  \relative c'' {
13         \property Staff.automaticMelismata = ##t
14         \autoBeamOff
15         g4  r8 \times 2/3 { g'8( f )e } r8 \grace { [d16 c b] } e4
16         \emptyText
17         d8.^"melisma"   \melisma c16
18         \melismaEnd
19         b c d e }
20
21 textI =   \lyrics  { la4 __ la -- la  I, la dargh la dargh.  }
22 textII =   \lyrics  { dar -- dargh __ dargh dargh; dargh la dargh loo.  }
23 textIII =   \lyrics  { la -- da __ doo dah; dargh la dargh loo.  }
24
25 \score {
26
27     \notes < \context Staff = SA \context Voice = VA { s1 }
28       \context LyricsVoice = "VA-1" { s1 }
29       \context LyricsVoice = "VA-2" { s1 }
30       
31       \addlyrics
32           \context Staff = SA \m
33           < \context LyricsVoice = "VA-1" \textI
34             \context LyricsVoice = "VA-2" \textII
35             \context LyricsVoice = "VA-3" \textIII
36           >
37           
38     >
39
40   \paper {
41   }
42
43 }