]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
release: 0.1.45
[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.9";
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         \duration 4;
40         c4 c' | e' c' | f' c' | e' c' | 
41         d' b | c' a | f g | c2 | 
42
43         e'4 g | d g | c' g | b g | 
44         e' g | d' g | c' c'8.( d'16 | c'4 )b |
45
46         c c' | e' c' | f' c' | e' c' | 
47         d' b | c' a | f g | c2 
48         \bar ":|";
49 }
50
51 global = \melodic {
52                 \meter 2 / 4;
53                 \skip 2*24;
54 %               \bar "|.";
55         }
56
57 tekst = \lyric{ 
58         Al-4 tijd is Kort- jak- je ziek,2
59 %       midden4 in_de week maar 's_zon- dags niet.2
60 % ugly hack: insertion of  empty syllables creates columns on extra 
61 % moments.  The net result is more spacing.
62 %
63         midden8 _8 in_de8 _8 week4 maar 's_zon- dags niet.2
64         's_Zon-4 dags gaat ze naar de kerk,2
65         met4 een boek vol zil- ver werk.2
66         Al-4 tijd is Kort- jak- je ziek,2
67         midden8 _8  in_de8 _8 week4 maar 's_zon- dags niet.2
68 }
69
70 %{
71
72 Ja inderdaad. Dit is geen educatieve danwel muzikaal verantwoorde
73 tekst. Mogen wij ook af en toe ergens op afgeven?
74
75 %}
76 hegedraagjetekst = \lyric{ 
77         Al-4 tijd zuigt Bill Gates mijn piek,2
78         "\TeX"4 is slecht- ser dan mu- ziek.2
79         's_Zon-4 dags gaat het door een raam,2
80         Weet4 dat ik me er- voor schaam.2
81         Al-4 tijd zuigt Bill Gates mijn piek,2
82         "\TeX"4 is slecht- ser dan mu- ziek.2
83 }
84
85 texte = \lyric{ 
86          
87         \textstyle "italic" ;
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 \score{
130         < 
131                 \lyric \type Lyrics = top < 
132                         \global \tekst >
133                 \type Staff_group < 
134                 \type Staff=treb < \global  
135                           \melody >
136                 \lyric \type Lyrics  = "Middle" <  \global
137                         \texte >
138                 \type Staff=bass        < \global 
139                         \accompany >
140                 % ugh
141                 >
142                 \lyric \type Lyrics  = bottomlyrics < \global
143                         \texti \textii \textiii >
144                 
145         >
146         \paper{
147                 % use a lot of space, to avoid clashing syllables
148                 arithmetic_multiplier = 8.\pt;
149                 gourlay_maxmeasures = 14.0;
150         }
151         \midi{ 
152                 \tempo 4 = 120 ;
153         }
154 }
155