]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyric-combine.ly
release: 1.1.62
[lilypond.git] / input / test / lyric-combine.ly
1 \header{
2 filename =       "twinkle-pop.ly";
3 %title =         "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.1.52";
11
12 m =\notes  \relative c'' {
13         \autoBeamOff
14         g4  r8 \times 2/3 { g'8 f e } r8 \grace { [d16 c b] } e4
15         \melisma
16         d8.() c16
17         \melismaEnd
18         b }
19
20 noisebeat =\notes \relative c'' {g16 g g g }
21 noise =  { \noisebeat \noisebeat \noisebeat  \noisebeat \noisebeat \noisebeat }
22 textI =  \lyrics  { la2 __ la -- la __ la la la la la  }
23 textII =  \lyrics  { da -- da __ da -- da da da da da  }
24
25 \score {
26     \notes < \context Staff = SA \m
27       \context Lyrics = LA { s1 }
28       \context Staff = SB { s1 }
29       \context Lyrics = LB { s1 }
30       \context Staff = SC \noise
31       
32       \addlyrics
33           \context Staff = SB \m
34           < \context Lyrics = LA \textI
35             \context Lyrics = LB \textII
36           >
37           
38     >
39 }
40