]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle-pop.ly
patch::: 1.1.13.uu1
[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.12";
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
41 text = \lyrics{ 
42         \property Lyrics . textstyle =  "italic"
43
44         Ah!4 vous dir- ai_- je ma man2
45         Ce4 qui cau- se mon tour- ment2
46         Pa-4 pa veut que je rai- so- nne
47         Comme4 un- e grand- e per- so- nne
48         Moi4 je dis que les bon- bons2
49         Val-4 ent mieux que la rai- son2
50         
51 }
52
53 \score {
54         <  
55          \type ChordNames \acc
56          \type Staff=melody \melodie
57            \type Lyrics \text
58           >
59       \header{
60               title = "Ah, vous dirais-je, maman ";
61       }
62           \paper {  }
63   }
64
65 \score {
66         <  
67          \chords \type ChordNames \transpose bes\acc
68          \notes \type Staff=melody \transpose bes\melodie
69            \lyrics \type Lyrics \text
70         >
71       \header{
72               piece = "clarinet in B\\textflat";
73       }
74         \paper {  }
75 }