~ubuntu-branches/ubuntu/precise/lilypond/precise

« back to all changes in this revision

Viewing changes to input/twinkle-pop.ly

  • Committer: Bazaar Package Importer
  • Author(s): Thomas Bushnell, BSG
  • Date: 2006-12-19 10:18:12 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20061219101812-7awtjkp0i393wxty
Tags: 2.8.7-3
scripts/midi2ly.py: When setting DATADIR, find Lilypond python files
in the @TOPLEVEL_VERSION@ directory, not 'current'.  Patch thanks to
Chris Lamb (chris@chris-lamb.co.uk).  (Closes: #400550)

Show diffs side-by-side

added added

removed removed

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