%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 %\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 Staff.TimeSignature.break-visibility = ##(#f #t #t) } melody = \relative c'' { \global \voiceOne e4^\markup {\small { \italic {"a."}}} c8. b16 a4 d16 c b a | g4 ~ g16 g a b | c2 \bar "||" \break \time 2/4 e16^\markup {\small { \italic {"b."}}} f e d c d c b | a8 d ~ d16 c b a | g8. a16 b c d8 ~ | d16 d c b c4 \bar "||" } middle = \relative c' { \global } bass = \relative c' { \global \voiceTwo c16-3 b c d e-6 c d e | f-3 g f e d8.-8 c16 | b16-6 c d e f4-2 ~ | f16_\markup {"x"} d_\markup {"x"} e-6 f e4 c8 d e g ~ | g16 g f e f e d c | b16 d f8 ~ f8. f16 | e2 } %%%%%%%%%%%%%%%%%%%%%%%%%% 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. "109." } \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 } }