%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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-last-right = ##t ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) nct = \finger \markup \teeny {\fontsize #-3 "x"} opt = \markup \tiny { \whiteout \pad-markup #0.4 "or"} % define fingering offset FO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \once \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) iver = \markup \tiny { \italic {"a."} Inferior version.} sver = \markup \tiny { \italic {"b."} Superior version.} eight = \finger \markup \teeny {\fontsize #-2 "8"} global = { \time 2/4 \numericTimeSignature %\key c \major \set Staff.midiInstrument = "piano" %\override Score.MetronomeMark #'padding = #3.8 \override Staff.TimeSignature #'stencil = ##f % \set Timing.beamExceptions = #'() % \set Timing.baseMoment = #(ly:make-moment 1/4) % \set Timing.beatStructure = #'(1 1 1 1) \override Glissando.thickness = #3 \override HorizontalBracket #'direction = #UP \override HorizontalBracket.thickness = #2 \override HorizontalBracket.extra-offset = #'( 0.0 . 2.0) \override TupletBracket.stencil = ##f \override TupletNumber.stencil = ##f } melody = \relative c'' { \global \voiceOne e4^\iver c a d b g' \break e c \partial 4 a'^\markup \tiny {"etc."} e^\sver c \break a d b g' e c \partial 4 a'^\markup \tiny {"etc."} } middle = \relative c' { \global } bass = \relative c' { \global \voiceTwo \tuplet 3/2 4 {r8 c d e d e f a g f e d g g, a b a b c g' f e f g} \partial 4 f4 \bar "||" \tuplet 3/2 4 {r8 c( d e f a f) d(_\markup \tiny {"Sequence."} e f g a g) d( c b a b c) g'(_\markup \tiny {"Sequence."} f e d e } \partial 4 f4) \bar "|." } %%%%%%%%%%%%%%%%%%%%%%%%%% 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. "77." } \context Voice = "melody" \with { \consists "Horizontal_bracket_engraver" } \melody %\context Voice = "middle" \middle \context Voice = "bass" \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 80 } }