%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 30) nct = \finger \markup \teeny {\fontsize #-6 "x"} nuja = \once \override TextScript.extra-offset = #'(-3 . -2) nujb = \once \override TextScript.extra-offset = #'(-3 . 0.0) labelA = \markup {\tiny { "1."} } labelB = \markup {\tiny { "2."} } FO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \once \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) GFO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) global = { \time 4/4 %\numericTimeSignature \key c \major \set Staff.midiInstrument = "piano" %\override Score.MetronomeMark #'padding = #3.8 %\override Staff.TimeSignature #'stencil = ##f \override Staff.TimeSignature.break-visibility = #end-of-line-invisible \set Timing.beamExceptions = #'() \set Timing.baseMoment = #(ly:make-moment 1/4) \set Timing.beatStructure = #'(1 1 1) \override HorizontalBracket.thickness = #2 \override TupletBracket.stencil = ##f \override TupletNumber.stencil = ##f } melody = \relative c'' { \global \voiceOne e4 c b d ~ d8 c b a gis4 a8 g'! \partial 2 f4 s^\markup \tiny {"etc. "} \break \time 4/4 e4^\markup {"may be quickened to this:"} c b d ~ \tuplet 3/2 4 {d8 d c ~ c b a} gis4 ~ \tuplet 3/2 4 {gis8 a g'!} \partial 4 f4 \bar "|." } bass = \relative c' { \global \voiceTwo c8-3 d e-6 fis g-3 a g-5 f \FO #'0 #'-2 e4-6 \FO #'0 #'-2 c-6 b8-6( d) \FO #'0 #'-2 cis4-6 \partial 2 d8-3 e s4 \tuplet 3/2 4 {r8 c d ~ d e fis ~ fis g a ~ a g f } e4 c ~ \tuplet 3/2 4 {c8 b d } cis4 ~ \tuplet 3/2 4 {cis8 d e^\markup \tiny {"etc."}} } %%%%%%%%%%%%%%%%%%%%%%%%%% 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. "83." } \context Voice = "melody" \with { \consists "Horizontal_bracket_engraver" } \melody %\context Voice = "middle" \middle \context Voice = "bass" \with { \consists "Horizontal_bracket_engraver" } \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 60 } }