]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle-pop.ly
release: 1.1.43
[lilypond.git] / input / twinkle-pop.ly
1 \header{
2 filename =       "twinkle-pop.ly";
3 %title =         "Ah, vous dirais-je, maman ";
4 description =    "twinkle twinkle in pop-song-settings";
5 composer =       "traditional";
6 enteredby =      "HWN, chords by Johan Vromans";
7 copyright =      "public domain";
8 }
9
10 %{
11 Tested Features         lyrics and chords
12 %}
13
14 \version "1.0.19";
15
16 melodie = \notes\relative c'' {
17         \clef "violin";
18         \time 2/4 ;
19
20         c4 c  | g' g | a a | g2  |
21         f4 f  | e e  | d d | c2  |
22         g'4 g | f f  | e e | d d |
23         g  g  | f f  | e e | d d |
24         % copy 1-8
25         c4 c  | g' g | a a | g2  |
26         f4 f  | e e  | d d | c2 \bar "|.";
27 }
28
29 acc = \chords {
30         % why don't \skip, s4 work?
31         c2 c f c
32         f c g-7 c
33         g f c  g-7 % urg, bug!
34         g f c  g-7
35         % copy 1-8
36         c2 c f c
37         f c g-7 c
38 }
39
40 text = \lyrics{ 
41         \property Lyrics . textstyle =  "italic"
42
43         Ah!4 vous dir- ai_- je ma man2
44         Ce4 qui cau- se mon tour- ment2
45         Pa-4 pa veut que je rai- so- nne
46         Comme4 un- e grand- e per- so- nne
47         Moi4 je dis que les bon- bons2
48         Val-4 ent mieux que la rai- son2
49         
50 }
51
52 \score {
53         <  
54            \context ChordNames \acc
55            \context Staff=melody \melodie
56            \context Lyrics \text
57         >
58         \header{
59                 title = "Ah, vous dirais-je, maman ";
60         }
61         \paper {  }
62 }
63
64 \score {
65         <  
66            \chords \context ChordNames \transpose d'\acc
67            \notes \context Staff=melody \transpose d'\melodie
68            \lyrics \context Lyrics \text
69         >
70         \header{
71                 piece = "clarinet in B\\textflat";
72         }
73         \paper {  }
74 }
75