%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) global = { \time 2/4 \numericTimeSignature \override TupletNumber.stencil = ##f \override TupletBracket.stencil = ##f %\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) } melody = \relative c'' { \global \voiceOne \tuplet 3/2 4 { e8^\markup {\small { \italic {"a."}}} f e d c b } a4 d | \tuplet 3/2 4 { r8 g, a b c d } c2 | \bar "||" e4^\markup {\small { \italic {"b."}}} \tuplet 3/2 4 {d8 c b} | a4 \tuplet 3/2 4 {d8 e f} | g,4 \tuplet 3/2 4 {b8 c d } | c2 \bar "||" \partial 4 \tuplet 3/2 4 {g8^\markup {\small { {"or:"}}} a b} | c2 \bar "||" } middle = \relative c' { \global } bass = \relative c' { \global \voiceTwo c4-3 e-6 | \tuplet 3/2 4 {f8-3 g f e d-8 c} | b4 f'_\markup {\tiny {"4+"}} ~ | \tuplet 3/2 4 {f8-6 e d } e4 \tuplet 3/2 4 {r8 c d e4 g8 ~ | g f e f e d | c8_\markup {"x"} b d } f4 ~ | \tuplet 3/2 4 {f8 e d} c4 \partial 4 f4 ~ | \tuplet 3/2 4 {f8 e d} c4 } %%%%%%%%%%%%%%%%%%%%%%%%%% 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. "108." } \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 = 60 } }