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