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