%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 ) #}) eight = \finger \markup \teeny {\fontsize #-2 "8"} global = { \time 7/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.thickness = #2 \override TupletBracket.stencil = ##f \override TupletNumber.stencil = ##f } melody = \relative c'' { \global \voiceOne c4^\markup \tiny {"From Group 1."} d \once \override TextScript.extra-offset = #'(3.6 . -4.7) e^\opt c d e \bar "||" \time 3/4 c4^\markup \tiny {"From Group 2."} d \once \override TextScript.extra-offset = #'(3.6 . -4.7) e^\opt \break \time 6/4 c4 d \once \override TextScript.extra-offset = #'(3.6 . -4.7) e^\opt c d e c4^\markup \tiny {"Group 3."} d e \break c d e c d^\markup \tiny {"Bad."}\glissando e \bar "||" c4^\markup \tiny {"Group 4."} d e c d e \break c^\markup \tiny {"Bad."}\glissando d e \bar "||" c4^\markup \tiny {"Group 5."} d e c^\markup \tiny {"Bad."}\glissando d e c d e \bar "||" \break c4^\markup \tiny {"Also: Group 3."} d e \bar "||" \time 6/4 c4^\markup \tiny {"Group 5."} d \once \override TextScript.extra-offset = #'(3.6 . -4.7) e^\opt c d e \bar "||" } middle = \relative c' { \global } bass = \relative c' { \global \voiceTwo e8 d\nct c\nct b c4 e8 c\nct b d c4 \time 3/4 e8 f\nct e\nct d c4 \time 6/4 e8 f\nct d b\nct c4 r8 e8 d b c4\bar "||" \time 3/4 a'8 g f g e4 r8 a g f e4 a8 g f d-8\glissando \FO #'0 #'-1.5 e4-8 c8 d c b c4 r8 c b d c4 c8-8 e\nct d-8 b c4 e8 a g f e4 e8 f-5\glissando g-5 f e4 r8 e g f e4 a8 g\nct f d\nct c4 e8 g\nct f d\nct c4 e8 g\nct f b,\nct 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. "63." } \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 } }