]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle.ly
069e82e830842711516537018b3cfa38e5a2453f
[lilypond.git] / input / twinkle.ly
1 \header{
2 filename =      "twinkle.ly";
3 title =         "Twinkle Twinkle Little Star";
4 composer =      "Traditional";
5 enteredby =     "hwn and jcn";
6 copyright =     "public domain";
7 }
8
9 %{
10 DESCRIPTION
11
12 traditional song in various languages.
13   "Ah, vous dirais-je, maman" 
14   "Altijd is Kortjakje ziek"
15   "Twinkle twinkle little star"
16 %}
17
18 %{
19 Tested Features: lyrics, interleaving lyrics and staffs, repeats
20 %}
21
22 \version "1.0.16";
23
24 melody = \notes \relative c'' {
25         \clef violin;
26         \property Staff.instrument = "alto sax"
27         
28         c4 c | g' g | a a | g g |
29         f f | e e | d d8.( e16 | )c2 |
30
31         g'4 g | f f | e e | d d |
32         g g | f f | e( e8. f16 | e4 )d |
33
34         c c | g' g | a a | g g |
35         f f | e e | d d8.( e16 | )c2 |
36 }
37
38 accompany = \notes \relative c {
39         \clef "bass";
40         c4 c' | e c | f c | e c | 
41         d b | c a | f g | c,2 | 
42
43         e'4 g, | d' g, | c g | b g | 
44         e' g, | d' g, | c c8.( d16 | c4 )b |
45
46         c, c' | e c | f c | e c | 
47         d b | c a | f g | c,2 
48 }
49
50 global = \notes {
51         \time 2/4;
52 }
53
54 tekst = \lyrics{ 
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         midden8 _8  in_de8 _8 week4 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 = \lyrics{ 
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 = \lyrics{ 
79         \property Lyrics . textstyle" =  "italic" 
80 %       \property Lyrics . textstyle" =  "roman" 
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- son- ne
84         Comm' u- ne gran- de per- son- ne
85         Moi je dis que les bon- bons2
86         Va-4 lent mieux que la rai- son2
87 }
88
89 texti = \lyrics{
90         \property "Lyrics"."textstyle" =  "roman"
91         Twin-4 kle, twin- kle, lit- tle star,2
92         How4 I won- der what you are.2
93         Up4 a- bove the world so high,2
94         Like4 a dia- mond in the sky.2
95         Twin-4 kle, twin- kle, lit- tle star,2
96         How4 I won- der what you are!2
97 }
98
99 textii = \lyrics{
100         When4 the bla- zing sun is gone,2
101         When4 he no- thing shines up- on,2
102         Then4 you show your lit- tle light,2
103         Twin-4 kle, twin- kle, all the night.2
104         Twin-4 kle, twin- kle, lit- tle star,2
105         How4 I won- der what you are!2
106         
107 }
108
109 textiii = \lyrics{
110         Then4 the tra- veler in the dark2
111         Thanks4 you for your ti- ny spark;2
112         He_could4 not see which way to go,2
113         If4 you did not twin- kle so.2
114         Twin-4 kle, twin- kle, lit- tle star,2
115         How4 I won- der what you are!2
116 }
117
118 \score{
119         <
120                 \context Staff=i \repeat 2 < \global\melody >
121                 \context Lyrics=top \repeat 2 {} \alternative < \tekst \texte >
122                 \context GrandStaff <
123                         \context Staff=ii \repeat 2 < \global\melody >
124                         \context Staff=iii \repeat 2 < \global\accompany >
125                 >
126                 \context Lyrics=bottom \repeat 3 {} 
127                         \alternative < \texti \textii \textiii >
128         >
129         \paper{
130                 gourlay_maxmeasures = 14.0;
131         }
132         \midi{ 
133                 \tempo 4 = 120 ;
134         }
135 }
136