]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
release: 0.1.65
[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 composer =       "Traditional";
10 enteredby =      "HWN & JCN";
11 copyright =      "public domain";
12 }
13
14 %{
15 Tested Features: lyrics, interleaving lyrics and staffs
16 %}
17
18 \version "0.1.15";
19
20 melody = \melodic{
21         \clef violin;
22         \octave c';
23         \property Staff.instrument = "alto sax"
24         
25         c4 c | g g | a a | g g |
26         f f | e e | d d8.( e16 | )c2 | % :|
27
28         g4 g | f f | e e | d d |
29         g g | f f | e( e8. f16 | e4 )d |
30
31         c c | g g | a a | g g |
32         f f | e e | d d8.( e16 | )c2 % :|
33         \bar ":|";
34 }
35
36 accompany = \melodic {
37         \clef "bass";
38         \octave c,;
39         c4 c' | e' c' | f' c' | e' c' | 
40         d' b | c' a | f g | c2 | 
41
42         e'4 g | d g | c' g | b g | 
43         e' g | d' g | c' c'8.( d'16 | c'4 )b |
44
45         c c' | e' c' | f' c' | e' c' | 
46         d' b | c' a | f g | c2 
47         \bar ":|";
48 }
49
50 global = \melodic {
51                 \meter 2 / 4;
52                 \skip 2*24;
53 %               \bar "|.";
54         }
55
56 tekst = \lyric{ 
57         Al-4 tijd is Kort- jak- je ziek,2
58 %       midden4 in_de week maar s,_zon- dags niet.2
59 % ugly hack: insertion of  empty syllables creates columns on extra 
60 % moments.  The net result is more spacing.
61 %
62         midden8 _8 in_de8 _8 week4 maar s,_zon- dags niet.2
63         s,_Zon-4 dags gaat ze naar de kerk,2
64         met4 een boek vol zil- ver werk.2
65         Al-4 tijd is Kort- jak- je ziek,2
66         midden8 _8  in_de8 _8 week4 maar s,_zon- dags niet.2
67 }
68
69 %{
70
71 Ja inderdaad. Dit is geen educatieve danwel muzikaal verantwoorde
72 tekst. Mogen wij ook af en toe ergens op afgeven?
73
74 %}
75 hegedraagjetekst = \lyric{ 
76         Al-4 tijd zuigt Bill Gates mijn piek,2
77         "\TeX"4 is slecht- ser dan mu- ziek.2
78         s,_Zon-4 dags gaat het door een raam,2
79         Weet4 dat ik me er- voor schaam.2
80         Al-4 tijd zuigt Bill Gates mijn piek,2
81         "\TeX"4 is slecht- ser dan mu- ziek.2
82 }
83
84 texte = \lyric{ 
85          
86 %       \textstyle "italic" ;
87         \textstyle "roman" ;
88         Ah!4 vous dir- ai_- je ma man2
89         Ce4 qui cau- se mon tour- ment2
90         Pa-4 pa veut que je rai- sonne2
91         Comme4 un- e grand- e per- sonne2
92         Moi4 je dis que les bon- bons2
93         Val-4 ent mieux que la rai- son2
94         
95 }
96
97 texti = \lyric{
98         
99         \textstyle "roman";
100         Twin-4 kle, twin- kle, lit- tle star,2
101         How4 I won- der what you are.2
102         Up4 a- bove the world so high,2
103         Like4 a dia- mond in the sky.2
104         Twin-4 kle, twin- kle, lit- tle star,2
105         How4 I won- der what you are!2
106 }
107
108 textii = \lyric{
109         When4 the bla- zing sun is gone,2
110         When4 he no- thing shines up- on,2
111         Then4 you show your lit- tle light,2
112         Twin-4 kle, twin- kle, all the night.2
113         Twin-4 kle, twin- kle, lit- tle star,2
114         How4 I won- der what you are!2
115         
116 }
117
118 textiii = \lyric{
119         
120         Then4 the tra- veler in the dark2
121         Thanks4 you for your ti- ny spark;2
122         He_could4 not see which way to go,2
123         If4 you did not twin- kle so.2
124         Twin-4 kle, twin- kle, lit- tle star,2
125         How4 I won- der what you are!2
126         
127 }
128
129 $top_lyrics = \type Lyrics = top <
130         \global 
131         \tekst
132 >
133
134 $treble_staff = \type Staff = treble <
135         \global
136         \melody 
137 >
138
139 $bass_staff = \type Staff = bass <
140         \global
141         \accompany
142 >
143
144 $middle_lyrics = \type Lyrics = middle <
145         \global
146         \texte
147 >
148
149 $bottom_lyrics = \type Lyrics = bottom <
150         \global
151         \texti
152         \textii
153         \textiii
154 >
155
156 $grand_staff = \type Staff_group <
157         \$treble_staff
158         \$middle_lyrics
159         \$bass_staff
160 >
161
162 \score{
163         < 
164                 \$treble_staff
165                 \$middle_lyrics
166                 \$top_lyrics
167                 \$grand_staff
168                 \$bottom_lyrics
169         >
170         \paper{
171                 % use a lot of space, to avoid clashing syllables
172 %               arithmetic_multiplier = 8.\pt;
173                 gourlay_maxmeasures = 14.0;
174         }
175         \midi{ 
176                 \tempo 4 = 120 ;
177         }
178 }
179