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