]> git.donarmstrong.com Git - lilypond.git/blob - input/tutorial/sammartini.ly
2d5e7557332536f7159458b3c8d8a0504451db82
[lilypond.git] / input / tutorial / sammartini.ly
1
2 \include "paper16.ly"
3  
4 viola = \notes \relative c'  \context Voice = viola {
5     <c4-\arpeggio g' c>
6     \voiceTwo
7     g'8. b,16
8     s1 s2. r4
9     g
10 }
11
12 oboes = \notes \relative c'' \context Voice = oboes {
13     \voiceOne
14     s4  g8. b,16 c8 r <e'8. g> <f16 a>
15     \grace <e8( g> <d4 )f> <c2 e>
16     \times 2/3 { <d8  f> <e g> <f a> }
17     <
18         { \times 2/3 { a8 g c }  c2 }
19         \\
20         { f,8 e e2 }  
21     >
22
23     \grace <c,8( e> <)b8. d8.-\trill> <c16 e> | 
24     [<d ( f> < )f8. a>] <)b,8 d> r [<d16( f> <f8. )a>] <b,8 d> r  |
25     [<c16( e>  < )e8. g>] <c8 e,>
26 }
27
28 hoomPah = \repeat unfold 8 \notes
29     \transpose c' {
30         \translator Staff = down
31         \stemUp
32         c8
33         \translator Staff = up
34         \stemDown
35         c'8 }
36
37 bassvoices = \notes \relative c' {
38     c4 g8. b,16
39     \context Voice \hoomPah
40     \translator Staff = down
41     \stemBoth 
42     
43     [c8 c'8] r4
44     <g d'> r4
45     < { r2 <e4 c'> <c8 g'> } \\
46       { g2 ~ | g4 c8 } >
47 }
48
49 \score {
50     \context PianoStaff \notes <
51         \context Staff = up < 
52              \oboes
53              \viola
54          >
55          \context Staff = down < \time 2/2 \clef bass
56              \bassvoices
57          >
58     >
59     \midi { }
60     \paper {
61         indent = 0.0
62         linewidth = 15.0 \cm }
63 }