]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
release: 0.1.9
[lilypond.git] / input / twinkle.ly
1 \header{
2 filename         twinkle.ly
3 title   twinkle twinkle little star
4 description     traditional song in various languages.
5          "Ah, vous dirais-je, maman" 
6          "Altijd is Kortjakje ziek"
7          "Twinkle twinkle little star"
8
9 composers       Traditional
10 enteredby       HWN & JCN
11 copyright       public domain
12 }
13 %{
14 Tested Features: lyrics
15
16 %}
17 \version "0.1.1";
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         g4 g | f f | e e | d d |
26         g g | f f | e( e8. f16 | e4 )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'4 g | d g | c' g | b g | 
41         e' g | d' g | c' c'8.( d'16 | c'4 )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-4 tijd is Kort- jak- je ziek,2
56         midden4 in_de week maar s'_zon- dags niet.2
57         s'_Zon-4 dags gaat ze naar de kerk,2
58         met4 een boek vol zil- ver werk.2
59         Al-4 tijd is Kort- jak- je ziek,2
60         midden4 in_de week maar s'_zon- dags niet.2
61 }
62
63 %{
64
65 Ja inderdaad. Dit is geen educatieve danwel muzikaal verantwoorde
66 tekst. Mogen wij ook af en toe ergens op afgeven?
67
68 %}
69 hegedraagjetekst = \lyric{ 
70         Al-4 tijd zuigt Bill Gates mijn piek,2
71         "\TeX"4 is slecht- ser dan mu- ziek.2
72         s'_Zon-4 dags gaat het door een raam,2
73         Weet4 dat ik me er- voor schaam.2
74         Al-4 tijd zuigt Bill Gates mijn piek,2
75         "\TeX"4 is slecht- ser dan mu- ziek.2
76 }
77
78 texte = \lyric{ 
79          
80         \textstyle "italic" ;
81         Ah!4 vous dir- ai_- je ma man2
82         Ce4 qui cau- se mon tour- ment2
83         Pa-4 pa veut que je rai- sonne2
84         Comme4 un- e grand- e per- sonne2
85         Moi4 je dis que les bon- bons2
86         Val-4 ent mieux que la rai- son2
87         
88 }
89
90 texti = \lyric{
91         
92         \textstyle "roman";
93         Twin-4 kle, twin- kle, lit- tle star,2
94         How4 I won- der what you are.2
95         Up4 a- bove the world so high,2
96         Like4 a dia- mond in the sky.2
97         Twin-4 kle, twin- kle, lit- tle star,2
98         How4 I won- der what you are!2
99 }
100
101 textii = \lyric{
102         When4 the bla- zing sun is gone,2
103         When4 he no- thing shines up- on,2
104         Then4 you show your lit- tle light,2
105         Twin-4 kle, twin- kle, all the night.2
106         Twin-4 kle, twin- kle, lit- tle star,2
107         How4 I won- der what you are!2
108         
109 }
110
111 textiii = \lyric{
112         
113         Then4 the tra- veler in the dark2
114         Thanks4 you for your ti- ny spark;2
115         He_could4 not see which way to go,2
116         If4 you did not twin- kle so.2
117         Twin-4 kle, twin- kle, lit- tle star,2
118         How4 I won- der what you are!2
119         
120 }
121
122 \score{
123         < 
124                 \melodic <
125                         \id "Piano" "";\multi 2;
126                         < \global 
127                                 \melody >
128                         < \global 
129                                 \accompany >
130                 >
131                 
132                 % ugh
133                 \lyric < \id "Lyric" "1"; 
134                         \global \tekst >
135                 \lyric < \id "Lyric" "2";  \global
136                         \texte >
137                 \lyric < \id "Lyric" "3"; \global
138                         \texti \textii \textiii >
139                 
140         >
141         \paper{
142         }
143         \midi{ 
144                 \tempo 4 = 120 ;
145         }
146 }
147