Skip to content

Instantly share code, notes, and snippets.

@hinrik
Created December 22, 2010 17:40
Show Gist options
  • Save hinrik/751815 to your computer and use it in GitHub Desktop.
Save hinrik/751815 to your computer and use it in GitHub Desktop.
\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