]> git.donarmstrong.com Git - lilypond.git/blob - mutopia/Hymns/ode.ly
c9b6ab6eadbe61e3c70cafea6ef57b7f8b5a1f71
[lilypond.git] / mutopia / Hymns / ode.ly
1 \header {
2   filename = "ode.ly";
3   enteredby = "Peter Chubb";
4   composer = "Beethoven";
5   date = "circa. 1800";
6   title = "Ode to Joy";
7   metre = "8 7 8 7 D";
8 }
9
10 \version "1.3.117";
11
12 sop=\notes \relative c'' {
13         b4 b c d | d c b a | g g a b | b4. a8 a2 |
14         b4 b c d | d c b a | g g a b | a4. g8 g2 |
15         a4 a b g | a [b8( )c] b4 g | a [b8( )c] b4 a | g a d,2 |
16         b'4 b c d | d c b a | g g a b | a4. g8 g2 |
17 }
18
19 alto=\notes  \relative c'' {
20         g4 g a g | g4. a8 g4 fis | d d fis g| g4. fis8 fis2 |
21         g4 g a g | g4. a8 g4 fis | d d fis g| g4 fis d2 |
22         d4 d d d | d d d d | d d fis fis | e cis d2 |
23         d4 g a a b [g8( )a] g4 e | e d fis g |g fis g2 |
24 }
25
26 tenor=\notes \relative c'{
27         d4 d c b | e4. d8 d4 d | b b d d | d4. d8 d2 |
28         d4 d c b | e4. d8 d4 d | b b d d | d4 d b2 |
29         fis4 fis g  e | fis [g8( )a8] g4 e | fis fis fis b | b a g( )fis |
30         g4 d' f, f | g4. d'8 d4 c | g g c c | d d b2 |
31 }
32
33 bass= \notes \relative c' {
34       g4 g g g | e4. fis8 g4 d | b b a g | d'4. d8 d2 |
35       g4 g g g | e4. fis8 g4 d | b b a g | d' d g,2 |
36       d'4 d d d | d d d d | d d dis dis | e a, d2 |
37       g4 g f f  | e4. fis8 g4 c, | c b a g | d' d g,2 |
38 }
39
40
41 global=\notes{
42         \time 4/4;
43         \property Staff.timeSignatureStyle="C"
44         \key g \major;
45         \skip 1*4; \bar "||";
46         \skip 1*4; \bar "||";
47         \skip 1*4; \bar "||";
48         \skip 1*4; \bar "|.";
49 }
50
51 upperStaff =  \context Staff = upper \notes {
52         \clef "G";
53         \context Staff <
54             \global
55             {\voiceOne \sop}
56             {\voiceTwo \alto}
57         >
58 }
59
60 lowerStaff =  \context Staff = lower \notes {
61         \clef "F";
62         \context Staff <
63             \global
64             {\voiceOne \tenor}
65             {\voiceTwo \bass }
66         >
67 }
68
69 \score{
70         <
71                 \upperStaff
72                 \lowerStaff
73         >
74         \paper {
75         }
76 }