]> git.donarmstrong.com Git - lilypond.git/blob - input/test/lyric-combine.ly
release: 1.3.60
[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.3.59";
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 }
20
21 noisebeat =\notes \relative c'' {g16 g g g }
22 noise =  { \noisebeat \noisebeat \noisebeat  \noisebeat \noisebeat \noisebeat }
23 textI =  \lyrics  { la2 __ la -- la __ la la la la la  }
24 textII =  \lyrics  { da -- da __ da -- da da da da da  }
25
26 \score {
27     \notes < \context Staff = SA \m
28       \context Lyrics = LA { s1 }
29       \context Staff = SB { s1 }
30       \context Lyrics = LB { s1 }
31       \context Staff = SC \noise
32       
33       \addlyrics
34           \context Staff = SB \m
35           < \context Lyrics = LA \textI
36             \context Lyrics = LB \textII
37           >
38           
39     >
40 }
41