]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
release: 0.0.32
[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( [f0*32 e0*32 d0*32] e8. f16 | e )d | c c | 
14         g g | f f | e( e8. f16 | e )d |
15
16         c c | g g | a a | g g |
17         f f | e e | d d8.( e16 | )c2 % :|
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 'c8.( 'd16 | \voice{ 'c )b } \voice{ g2 } |
29         'e g | 'd g | 'c 'c8.( 'd16 | 'c )b |
30
31         c 'c | 'e 'c | 'f 'c | 'e 'c | 
32         'd b | 'c a | f g | c2 
33         $
34 }
35
36 tekst = music { 
37         @ 
38         Al- tijd is Kort- jak- je ziek,2
39         midden in_de week maar 's_zon- dags niet.2
40         's_Zon- dags gaat ze naar de kerk,2
41         met een boek vol zil- ver werk.2
42         Al- tijd is Kort- jak- je ziek,2
43         midden in_de week maar 's_zon- dags niet.2
44         @
45 }
46
47 he_gedraagje_tekst = music { 
48         @ 
49         Al- tijd zuigt Bill Gates mijn piek,2
50         "\TeX" is slecht- ser dan mu- ziek.2
51         's_Zon- dags gaat het door een raam,2
52         Weet dat ik me er- voor schaam.2
53         Al- tijd zuigt Bill Gates mijn piek,2
54         "\TeX" is slecht- ser dan mu- ziek.2
55         @
56 }
57
58 texte = music { 
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         Comme 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 text1 = music {
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 text2 = 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 text3 = music {
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 }
110
111 bass_staf = staff {
112         melodic 
113         music { begeleiding }
114 }
115
116
117 dutch_staf = staff {
118         lyric 
119         music { tekst }
120         music {he_gedraagje_tekst}
121 }
122
123 french_staf = staff {
124         lyric 
125         music { texte }
126 }
127
128 english_staf = staff {
129         lyric 
130         music { text1 }
131         music { text2 }
132         music { text3 }
133 }
134
135 tstaf = staff { 
136         lyric 
137         music { tekst }
138         music { texte }
139 }
140
141
142 score {
143         staff { mstaf }
144         staff { dutch_staf }
145         staff { french_staf }
146         staff { english_staf }
147         staff { bass_staf }
148         paper {
149                 unitspace 2.5cm
150         }
151         commands {
152                 meter {2 * 4}
153                 skip 24*2
154                 bar "||"
155         }
156 }
157