diff --git a/the-return.ly b/the-return.ly new file mode 100644 index 0000000..1b7a171 --- /dev/null +++ b/the-return.ly @@ -0,0 +1,82 @@ +\version "2.18.2" +\language "english" + +\header { + title = "The Return" + composer = "Tommy Montgomery" + copyright = "(c) 2015 Tommy Montgomery" +} + +global = { + \key d \major + \time 4/4 + \set Staff.printKeyCancellation = ##f +} + +introRiffRh = { + \relative c''' { + a16 d, a d g a, fs' e a, d e a, cs d a g | + } +} + +\parallelMusic #'(right left) { + \tempo "With radiance" 4 = 90 + + % intro + \global \introRiffRh | + \global r1 | + + \introRiffRh | + r1 | + + fs16 g e d g a fs e a b g fs b cs d g | + r1 | + + a16 g fs d a g fs d \tuplet 6/4 { a d e a d e } \ottava #'1 \times 4/6 { a d e fs g a } | + r1 | + + d1 | + r2 r4 r8 8 | + + \ottava #'0 \introRiffRh | + d16 a' d e fs a d e ~ e8 | + + \introRiffRh | + c16 g' c d e g c e ~ e8 | + + fs,,,16 g e d e8. d16 ~ d e fs8 g16 a fs e | + g16 d' g a a, e' a b g, d' a e' a, e' a b | + + fs8. e16 ~ e fs g8 a16 b g fs g8 a | + b,16 fs' b cs a, e' b fs' a, e' g, d' g, d' fs, d' | + + \time 5/4 b16 g e b a8. b16 ~ b8 cs ~ cs16 d8. e16 fs g a | + e,16 b' e fs e, fs g a b cs d e fs g a b cs d e fs | + + b g e b as8. b16 ~ b8 cs8 ~ cs16 d8. e8 fs | + e,,16 b' e fs fs, cs' fs cs gs' cs, as' fs cs as' fs cs as' fs cs fs, | + + \time 4/4 fs'16 b, fs b e fs, d' cs fs, b cs fs, a b fs e | + b,16 fs' b fs' b cs d e d cs b fs d cs b fs | + + fs'16 b, fs b e fs, d' cs fs, b cs fs, a b fs e | + b,16 fs' b fs' b cs d e d cs b fs d cs b fs | + +} + +\score { + \new PianoStaff \with { + instrumentName = "Piano" + } << + \new Staff = "right" \with { + midiInstrument = "acoustic grand" + \consists "Span_arpeggio_engraver" + } \relative c' \right + \new Staff = "left" \with { + midiInstrument = "acoustic grand" + } { \clef bass \relative c, \left } + >> + \layout { } + \midi { + } +} diff --git a/the-return.pdf b/the-return.pdf new file mode 100644 index 0000000..212f47f Binary files /dev/null and b/the-return.pdf differ