\version "2.12.3" \header { title = "Memories" subtitle = "From the Shadow of the Colossus Soundtrack" composer = "Composed by Ko Otani" arranger = \markup \right-column { \line {Transcription by Joel Spadin} \line \teeny {http://chaosinacan.com}} } \include "english.ly" Right = \relative c'' { b1 | b2 d4.. d16 | g,1 ~ | g | a | b2 d4.. d16 | g,1 | f'4 ef d8.^\markup \italic "tratt." ef32 d c4 | b1^\markup \italic "a tempo" | d2 fs4.. fs16 | g1 ~ | g | a2 g4 c, | e2 d | f e4 a, | d2 c^\markup \italic "tratt." | \acciaccatura c,8 c'1^\markup \italic "a tempo" ~ | c2 g | b4 a g f | e2 d | e f | g a^\markup \italic "rit. e dim." | \acciaccatura { a8[ fs]~ } 1 | d'1 | \acciaccatura { e8[ d] } c1 | %26 b2^\markup \italic "a tempo" g'4 fs | \voiceOne g^\markup \italic "rit." b d fs | g1 | \oneVoice R1 } Dynamics = { \override TextScript #'Y-extent = #'(1 . -1) c1\mf | R1 * 11 | c8 c8\f c8 c4-\markup { \fontsize #-2 \italic "dim." } c4. | R1 | c8 c4\mp c8 c2 | R1 * 5 | c1\mf | R1 * 4 | c8 c4\mp c8 c2 | c2.\< c4\! | c2.\> c4\! | c1 } Left = \relative c' { g4_\markup \italic "with pedal" b d b | fs b d b | e, b' c b | d, b' c d | c, a' e' a, | b, g' d' g, | af, f' c' g | af1 | g4 b d b | fs b d b | e, b' c b | d, b' \change Staff=upper \voiceTwo fs' g \change Staff=lower | \oneVoice c,, a' e' a, | b, g' d' g, | a, f' c' f, | af, f' c' f, | g, e' c' e, | g, ef' c' ef, | g, d' b' d, | g, d' f d | c-- g' d' g, | e' g, f' g, | d a' d e | fs1 ~ | fs | %26 g,4 b d b | \change Staff=upper \voiceTwo d g b d | cs2 d | \change Staff=lower 1\fermata } UpperStaff = { %\override Score.MetronomeMark #'transparent = ##t #(override-auto-beam-setting '(end 1 8 * *) 4 8) \override TextScript #'Y-extent = #'(-1.5 . 1.5) \tempo 4 = 100 \tempo \markup \concat { \fontsize #-2 \general-align #Y #DOWN \note #"4" #1 " = ca. 100 (Tempo rubato)" } \key g \major \Right \bar "|." } LowerStaff = { #(override-auto-beam-setting '(end 1 8 * *) 4 8) \override TextScript #'Y-extent = #'(0 . 3) \key g \major \clef bass \Left \bar "|." } \score { \new PianoStaff { \set PianoStaff.midiInstrument = #"acoustic grand" << \new Staff = "upper" \UpperStaff \new Dynamics = "dynamics" \Dynamics \new Staff = "lower" \LowerStaff >> } %\midi { } \layout { % define Dynamics context \context { \type "Engraver_group" \name Dynamics \alias Voice \consists "Output_property_engraver" \consists "Piano_pedal_engraver" \consists "Script_engraver" \consists "New_dynamic_engraver" \consists "Dynamic_align_engraver" \consists "Text_engraver" \consists "Skip_event_swallow_translator" \consists "Axis_group_engraver" pedalSustainStrings = #'("Ped." "*Ped." "*") pedalUnaCordaStrings = #'("una corda" "" "tre corde") \override DynamicLineSpanner #'Y-offset = #0 \override TextScript #'font-size = #2 \override TextScript #'font-shape = #'italic \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) } % modify PianoStaff context to accept Dynamics context \context { \PianoStaff \accepts Dynamics } } }