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