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