Created
December 22, 2010 17:40
-
-
Save hinrik/751815 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.2" | |
\header { | |
title = "Destiny" | |
subtitle = \markup { "from" \italic "Lost" } | |
composer = "Michael Giacchino" | |
instrument = "Piano solo" | |
} | |
\score { | |
\new PianoStaff << | |
\tempo 4 = 60 | |
\new Staff { | |
\clef treble | |
\key c \major | |
\numericTimeSignature | |
\time 4/4 | |
\relative c' { | |
\repeat "tremolo" 16 { c32_\f\> f,\!\p } | |
R1 | |
\repeat "tremolo" 16 { des'32_\f\> f,\!\p } | |
R1 | |
\break | |
\repeat "tremolo" 16 { a32_\f\> f\!\p } | |
R1 | |
\repeat "tremolo" 16 { c'32_\f\> f,\!\p } | |
R1 | |
} | |
} | |
\new Staff { | |
\clef bass | |
\key c \major | |
\numericTimeSignature | |
\time 4/4 | |
\relative c { | |
\repeat "tremolo" 16 { c32 f, } | |
R1 | |
\repeat "tremolo" 16 { des'32 f, } | |
R1 | |
\repeat "tremolo" 16 { a32 f } | |
R1 | |
\repeat "tremolo" 16 { c'32 f, } | |
R1 | |
} | |
} | |
>> | |
\midi { } | |
\layout { } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment