]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
release: 0.0.42.pre3
[lilypond.git] / input / twinkle.ly
1 %  "Ah, vous dirais-je, maman" 
2 %  "Altijd is Kortjakje ziek"
3 %  "Twinkle twinkle little star"
4
5 % Copyright: none
6
7 melodie = \music {
8         \clef\violin
9         c c | g g | a a | g g |
10         f f | e e | d d8.( e16 | )c2 | % :|
11
12         g g | f f | e e | d d |
13         g g | f f | e( e8. f16 | e )d |
14
15         c c | g g | a a | g g |
16         f f | e e | d d8.( e16 | )c2 % :|
17         \bar ":|"
18         
19 }
20
21 begeleiding = \music {
22         \clef \bass
23         \octave{`}
24         c c' | e' c' | f' c' | e' c' | 
25         d' b | c' a | f g | c2 | 
26
27         e' g | d g | c' g | b g | 
28         e' g | d' g | c' c'8.( d'16 | c' )b |
29
30         c c' | e' c' | f' c' | e' c' | 
31         d' b | c' a | f g | c2 
32         \bar ":|"
33         
34 }
35 globalmusic=\music{
36                 \meter {2 / 4}
37                 \skip {24*2}
38                 \bar "||"
39         }
40 tekst = \lyrics { 
41         Al- tijd is Kort- jak- je ziek,2
42         midden in_de week maar s'_zon- dags niet.2
43         s'_Zon- dags gaat ze naar de kerk,2
44         met een boek vol zil- ver werk.2
45         Al- tijd is Kort- jak- je ziek,2
46         midden in_de week maar s'_zon- dags niet.2
47 }
48
49 hegedraagjetekst = \lyrics { 
50         Al- tijd zuigt Bill Gates mijn piek,2
51         "\TeX" is slecht- ser dan mu- ziek.2
52         s'_Zon- dags gaat het door een raam,2
53         Weet dat ik me er- voor schaam.2
54         Al- tijd zuigt Bill Gates mijn piek,2
55         "\TeX" is slecht- ser dan mu- ziek.2
56 }
57
58 texte = \lyrics { 
59          
60         \textstyle "italic" 
61         Ah! vous dir- ai_- je ma man2
62         Ce qui cau- se mon tour- ment2
63         Pa- pa veut que je rai- sonne2
64         Co\mme un- e grand- e per- sonne2
65         Moi je dis que les bon- bons2
66         Val- ent mieux que la rai- son2
67         
68 }
69
70 textI = \lyrics {
71         
72         \textstyle "roman"
73         Twin- kle, twin- kle, lit- tle star,2
74         How I won- der what you are.2
75         Up a- bove the world so high,2
76         Like a dia- mond in the sky.2
77         Twin- kle, twin- kle, lit- tle star,2
78         How I won- der what you are!2
79         
80 }
81
82 textII = \music {
83         
84         \textstyle "roman"
85         When the bla- zing sun is gone,2
86         When he no- thing shines up- on,2
87         Then you show your lit- tle light,2
88         Twin- kle, twin- kle, all the night.2
89         Twin- kle, twin- kle, lit- tle star,2
90         How I won- der what you are!2
91         
92 }
93
94 textIII = \lyrics{
95         
96         \textstyle "roman"
97         Then the tra- veler in the dark2
98         Thanks you for your ti- ny spark;2
99         He_could not see which way to go,2
100         If you did not twin- kle so.2
101         Twin- kle, twin- kle, lit- tle star,2
102         How I won- der what you are!2
103         
104 }
105
106 mstaf = \staff {
107         \melodic
108         \music { melodie }
109         \music { globalmusic }
110 }
111
112 bassstaf = \staff {
113         \melodic        
114         \music { begeleiding }
115         \music { globalmusic }
116 }
117
118
119 dutchstaf = \staff {
120         lyric 
121         \music { tekst }
122         \music {hegedraagjetekst}
123         \music { globalmusic }
124 }
125
126 frenchstaf = \staff {
127         lyric 
128         \music { texte }
129         \music { globalmusic }
130 }
131
132 englishstaf = \staff {
133         lyric 
134         \music { textI }
135         \music { textII }
136         \music { textIII }
137         \music { globalmusic }
138 }
139
140 tstaf = \staff { 
141         lyric 
142         \music { tekst }
143         \music { texte }
144         \music { globalmusic }
145 }
146
147
148 \score {
149         \staff { mstaf }
150         \staff { dutchstaf }
151         \staff { frenchstaf }
152         \staff { englishstaf }
153         \staff { bassstaf }
154         \paper {
155                 \unitspace 2.5\cm
156         }
157         
158         \midi { 
159                 \tempo 4:120 
160         }
161 }
162