]> git.donarmstrong.com Git - lilypond.git/blob - input/tutorial/galuppi.ly
64384ec1c2fdc35bc910f50551d5e207c7b677de
[lilypond.git] / input / tutorial / galuppi.ly
1
2 soprano = \notes \relative c''  {
3         fis8 g  g8.-\trill fis32 g a8 d, r a
4         b4 ~ \times 2/3 { [b16 cis d] } \times 2/3 { [e fis g] }
5         a,4 ~ \times 2/3 { [a16 b cis] } \times 2/3 { [d e fis] }
6         a8 g16. fis32 g8.-\trill fis16 fis4
7 }
8
9 bass = \notes \relative c {
10         \property Voice.verticalDirection = \down
11         d4 e fis r8 fis | g4. g8 fis4. fis8 e8 e a a d,4
12 }
13
14 tenor = \notes \relative c' {
15         \property Voice.verticalDirection = \up
16         r8
17         d4 cis8 r d16. cis32 d4 | r8 e16. dis32 e4 ~ e8 d16. cis32 d4 ~ |
18         [d8 d8] [cis cis] d4
19 }
20
21
22 \score {
23         \context PianoStaff \notes <
24                 \context Staff = top { \key d; \time 4/4;
25                         \soprano
26                 }
27                 \context Staff = bottom < \key d; \time 4/4; \clef bass;
28                         \context Voice = up  { \tenor } 
29                         \context Voice = down  { \bass }
30                 >
31                 
32         >
33         \midi{}
34         \paper {}
35 }
36
37         
38