%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 = ##t } rightPar = \markup { \fontsize #4 " )" } leftPar = \markup { \fontsize #4 " ( " } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) global = { \time 5/4 \numericTimeSignature \override Staff.BarLine #'transparent = ##t %\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) } fourLines = \override Staff.StaffSymbol #'line-positions = #'(-4 -2 2 4) fiveLines = \override Staff.StaffSymbol #'line-positions = #'(-4 -2 0 2 4) melody = \relative c'' { \global c8^\markup {\small { \italic {"a."}}} d \stopStaff \startStaff \fourLines \hideNotes \once \override TextScript.extra-offset = #'(-0.2 . -3.0) c16^\markup {"becomes"} c c c \unHideNotes \stopStaff \startStaff \fiveLines \hideNotes \partial 16 c16 \unHideNotes c16( b^\markup {"x"} c) d \stopStaff \startStaff \fourLines \hideNotes \once \override TextScript.extra-offset = #'(-0.2 . -3.0) c16^\markup {"not"} c \stopStaff \startStaff \fiveLines \hideNotes \partial 16 c16 \unHideNotes c16( d^\markup {"x"} c) d \bar "||" c8^\markup {\small { \italic {"b."}}} b \stopStaff \startStaff \fourLines \hideNotes \once \override TextScript.extra-offset = #'(-0.2 . -3.0) c16^\markup {"becomes"} c c c \unHideNotes \stopStaff \startStaff \fiveLines \hideNotes \partial 16 c16 \unHideNotes c16( d^\markup {"x"} c) b \stopStaff \startStaff \fourLines \hideNotes \once \override TextScript.extra-offset = #'(-0.2 . -3.0) c16^\markup {"not"} c \stopStaff \startStaff \fiveLines \hideNotes \partial 16 c16 \unHideNotes c16( b^\markup {"x"} c) b \bar "||" } middle = \relative c' { \global } bass = \relative c' { } %%%%%%%%%%%%%%%%%%%%%%%%%% 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. "100." } \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 } }