Haydn-Finale.ly (2442B)
1 \version "2.19" 2 \language "english" 3 4 \header { 5 title = "Concerto No. 1" 6 subtitle = "in C Major" 7 composer = "Josef Haydn" 8 % Remove default LilyPond tagline 9 tagline = ##f 10 } 11 12 \paper { 13 #(set-paper-size "a4") 14 } 15 16 global = { 17 \key c \major 18 \time 2/2 19 } 20 21 cello = \relative c' { 22 \global 23 \tempo "Allegro Molto" 24 \teeny \set Score.markFormatter = #format-mark-box-alphabet 25 \clef treble \stemUp \compressFullBarRests 26 27 c'2~^\markup{"Vln. I"} c8 f e d 28 c r a' r g r r4 29 c,2~ c8 f e d 30 c8 r g16( f e f) e8 \clef bass r8 r4 31 \normalsize 32 R1*16 \break \small \mark \default 33 % line two, page one 34 \clef treble g'2~^\markup{"Vln. I"} g8 e d c 35 b r d16( c b c) d8 \clef bass r8 r4 36 R1*8 \mark \default 37 R1*4 \clef treble 38 c16[^\markup{"Vln. I"} d e f] g a b c a,[ b c d] e f g a \break 39 % line three, page one 40 g4 f16 e d c d2\trill 41 c16[ d e f] g a b c a,[ b c d] e f g a 42 g4 f16 e d c d2\trill 43 c8[ e16 f] g8 e c[ e,16 f] g8 e 44 c4 <c' e> <c e> r \break \mark \default 45 % line four, page one 46 \normalsize \clef tenor \stemNeutral 47 \override NoteHead.color = #black 48 \override Stem.color = #black 49 \override Beam.color = #black 50 \override Rest.color = #black 51 c,1~\p\upbow^\markup{\bold \teeny "II"} 52 c~ 53 c~\downbow 54 c8[\mf d16\downbow e] f g a b c8 c,-!\upbow c-! c-! 55 c2~ c8 f-! e-! d-! 56 c8-! r <f a>-! r <e g>-! r r4 \break 57 % line five, page one 58 c2~ c8 f8-! e-! d-! 59 c[ d16\downbow e] f g a b c8 g-!\upbow g-! g-! 60 gs8( a) a4~ a8 c,-! c-! c-! 61 c8[ d16 e] f g! a b c8 a-!-3 a-! a-! \break 62 fs8( g) g4~ g8 c,-! c-! c-! 63 c[ d16 e] f! g a b c8 g-!^\markup{\bold \teeny "I"} g-! g-! 64 e8( f) f4~ f8[ g,16^\markup{\bold \teeny "III"} a] b c d e 65 f[ d e f] g a b c d4. f,8\upbow \break 66 e16[( d c d)] c8 c c4 r \clef bass 67 c,,16\upbow c'( b c d[ c b c)] c,8 r r4 68 \stemDown g'16[ f'( e f] g f e f) \stemNeutral g,8 r r4 69 e'16[ c'( b c] d c b c) f, c'( b c d[ c b c]) \break 70 g16[ c( b c] d c b c) a c( b c d[ c b c]) 71 g8[ e, f a'] g e, d[ c''32( b a b)] 72 c8[ e,, f a'] g e, d[ c''32( b a b)] \break 73 c8[ c] d16( c b c d8[) d] e16( d c d 74 e8[) e] f16( e d e f8[) f] g16( f e f 75 g8[) g] a16( g f g) a4.( c,8) 76 b16[ g fs e] d c b a g4 r \pageBreak 77 78 d''2~ d8 b a g 79 <fs a>4 <g b> <a c> r 80 81 } 82 83 \score { 84 \new Staff \with { 85 instrumentName = "Cello" 86 } {\clef bass \cello } 87 \layout { 88 \context{ 89 \Score 90 \override NonMusicalPaperColumn.line-break-permission = ##f 91 } 92 } 93 }