]> git.donarmstrong.com Git - lilypond.git/blob - input/twinkle-pop.ly
release: 1.1.13
[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.10";
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  |
27 }
28
29 acc = \chords {
30         % why don't \skip, s4 work?
31         @2c @c @f @c
32         @f @c @g7 @c
33         @g @f @c  @g7 % urg, bug!
34         @g @f @c  @g7
35         % copy 1-8
36         @2c @c @f @c
37         @f @c @g7 @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            \chords \type ChordNames \acc
55 %          \notes \type Staff=chords \acc
56            \notes \type Staff=melody \melodie
57            \lyrics \type Lyrics \text
58         >
59         \paper {  }
60 }