%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % This is a Lilypond source code file. For more information % about the Lilypond music typesetting program, visit % % http://lilypond.org % % The code in this source file is released under % a GPLv3 license. For licensing information visit % % http://www.gnu.org/licenses/quick-guide-gplv3 % %---------------------------------------------------------------- \version "2.18.0" \header { tagline = "" % removed } \paper { #(set-paper-size "letter") ragged-last-bottom = ##t ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 26) FO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \once \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) global = { \time 4/4 % \numericTimeSignature \key a \minor \set Staff.midiInstrument = "piano" %\override Score.MetronomeMark #'padding = #3.8 \override Staff.TimeSignature #'stencil = ##f \override TextSpanner.bound-details.left.stencil-align-dir-y = #CENTER \override TextSpanner.bound-details.right.stencil-align-dir-y = #CENTER \set Timing.beamExceptions = #'() \set Timing.baseMoment = #(ly:make-moment 1/4) \set Timing.beatStructure = #'(1 1 1 1) \override Staff.TimeSignature.break-visibility = #end-of-line-invisible %\override Staff.KeySignature.break-visibility = #end-of-line-invisible \override Glissando.thickness = #4 } melody = \relative c'' { \global \voiceOne \partial 4 c8^\markup \tiny {\italic {a.}} a | gis4( gis)\finger \markup \teeny {\fontsize #-2 "4+"} a b | c4( c) b\finger \markup \teeny {\fontsize #-2 "4+"} d| f\finger \markup \teeny {\fontsize #-2 "5---"} e8 d c4 c\finger \markup \teeny {\fontsize #-2 "5---"} | \partial 2. b( e) a, \bar "||" \break \time 3/4 % \numericTimeSignature \key c \minor \partial 4 c8^\markup \tiny {\italic {b.}} bes! | aes4 g aes\finger \markup \teeny {\fontsize #-2 "5---"} | g( b)\finger \markup \teeny {\fontsize #-2 "4+"} c d\finger \markup \teeny {\fontsize #-2 "4+"} es( es8)[\finger \markup \teeny {\fontsize #-2 "5---"} d] | \partial 2 c2 \bar "|." } middle = { } bass = \relative c' { \global \voiceTwo \partial 4 a8 c | e4( d)_\markup \tiny {"V7"} c b | a( e') f_\markup \tiny {"II"} d| b_\markup \tiny {"II"} c8 d e4 fis | \partial 2. gis( gis,) a \time 3/4 % \numericTimeSignature \key c \minor \partial 4 c8 d f4 es d b( f') es| aes g a8[ b] \partial 2 c2 } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \context Staff = "guitar" \with { \consists "Span_arpeggio_engraver" } << \set Staff.midiInstrument = "piano" \set Staff.connectArpeggios = ##t %\numericTimeSignature \set Staff.instrumentName = \markup \center-column { Ex. "52." } \context Voice = "melody" \melody %\context Voice = "middle" \middle \context Voice = "bass" \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 84 } }