]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
release: 0.1.36
[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.7";
19
20 melody = \melodic{
21         \clef violin;
22         \octave c';
23         
24         c4 c | g g | a a | g g |
25         f f | e e | d d8.( e16 | )c2 | % :|
26
27         g4 g | f f | e e | d d |
28         g g | f f | e( e8. f16 | e4 )d |
29
30         c c | g g | a a | g g |
31         f f | e e | d d8.( e16 | )c2 % :|
32         \bar ":|";
33 }
34
35 accompany = \melodic {
36         \clef "bass";
37         \octave 'c;
38         \duration 4;
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         Ah!4 vous dir- ai_- je ma man2
88         Ce4 qui cau- se mon tour- ment2
89         Pa-4 pa veut que je rai- sonne2
90         Comme4 un- e grand- e per- sonne2
91         Moi4 je dis que les bon- bons2
92         Val-4 ent mieux que la rai- son2
93         
94 }
95
96 texti = \lyric{
97         
98         \textstyle "roman";
99         Twin-4 kle, twin- kle, lit- tle star,2
100         How4 I won- der what you are.2
101         Up4 a- bove the world so high,2
102         Like4 a dia- mond in the sky.2
103         Twin-4 kle, twin- kle, lit- tle star,2
104         How4 I won- der what you are!2
105 }
106
107 textii = \lyric{
108         When4 the bla- zing sun is gone,2
109         When4 he no- thing shines up- on,2
110         Then4 you show your lit- tle light,2
111         Twin-4 kle, twin- kle, all the night.2
112         Twin-4 kle, twin- kle, lit- tle star,2
113         How4 I won- der what you are!2
114         
115 }
116
117 textiii = \lyric{
118         
119         Then4 the tra- veler in the dark2
120         Thanks4 you for your ti- ny spark;2
121         He_could4 not see which way to go,2
122         If4 you did not twin- kle so.2
123         Twin-4 kle, twin- kle, lit- tle star,2
124         How4 I won- der what you are!2
125         
126 }
127
128 \score{
129         < 
130                 \lyric \type Lyrics = top < 
131                         \global \tekst >
132                 \type Staff_group < 
133                 \type Staff=treb < \global  
134                           \melody >
135                 \lyric \type Lyrics  = "Middle" <  \global
136                         \texte >
137                 \type Staff=bass        < \global 
138                         \accompany >
139                 % ugh
140                 >
141                 \lyric \type Lyrics  = bottomlyrics < \global
142                         \texti \textii \textiii >
143                 
144         >
145         \paper{
146                 % use a lot of space, to avoid clashing syllables
147                 arithmetic_multiplier = 8.\pt;
148                 gourlay_maxmeasures = 14.0;
149         }
150         \midi{ 
151                 \tempo 4 = 120 ;
152         }
153 }
154