Created
January 18, 2010 05:36
-
-
Save horndude77/279807 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| \version "2.12.0" | |
| violin = \relative c' | |
| { | |
| \clef treble | |
| \times 2/3 {g8([ c e]} \times 2/3 {g8[ c e]} g4 e) | |
| \times 2/3 {aes,,8([ c ees]} \times 2/3 {aes8[ c ees]} aes4 ees) | |
| \times 2/3 {bes,8([ d f]} \times 2/3 {bes8[ d f]} bes4) \times 2/3 {bes8[ bes bes]} | |
| c1 | |
| } | |
| viola = \relative c | |
| { | |
| \clef alto | |
| \times 2/3 {r8 e([ g]} \times 2/3 {c8[ e g]} c4 g) | |
| \times 2/3 {r8 ees,([ aes]} \times 2/3 {c8[ ees aes]} c4 aes) | |
| \times 2/3 {r8 f,([ bes]} \times 2/3 {d8[ f bes]} d4) d | |
| e1 | |
| } | |
| cello = \relative c | |
| { | |
| \clef bass | |
| r4 \times 2/3 {c8([ e g]} e'4 c-) | |
| r \times 2/3 {c,8([ ees aes]} ees'4 c-) | |
| r \times 2/3 {d,8([ f bes]} f'4) \times 2/3 {d8[ d d]} | |
| c1 | |
| } | |
| outline = | |
| { | |
| \time 4/4 | |
| \tempo 4=132 | |
| s1*4 | | |
| \bar "|." | |
| } | |
| \header | |
| { | |
| title = "MARIO WINS." | |
| subtitle = "For string trio" | |
| } | |
| \score | |
| { | |
| \new StaffGroup | |
| << | |
| \new Staff | |
| { | |
| \set Staff.instrumentName = "Violin" | |
| \set Staff.midiInstrument = "string ensemble 1" | |
| << \violin \outline >> | |
| } | |
| \new Staff | |
| { | |
| \set Staff.instrumentName = "Viola" | |
| \set Staff.midiInstrument = "string ensemble 1" | |
| \viola | |
| } | |
| \new Staff | |
| { | |
| \set Staff.instrumentName = "Cello" | |
| \set Staff.midiInstrument = "string ensemble 1" | |
| \cello | |
| } | |
| >> | |
| \layout { } | |
| \midi { } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment