%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 . 0) nujb = \once \override TextScript.extra-offset = #'(-3 . -1.7) 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 ) #}) global = { \time 3/4 %\numericTimeSignature \key g \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 } melody = \relative c'' { \global \voiceOne \once \override TextScript.extra-offset = #'(-1.7 . -1.0) \partial 4 \nuja r8^\labelA g'8 ~ g d ~ d e ~ e c a4 b d ~ \break d8 ~ c ~ c a ~ a fis | g2 \bar "||" \key g \major \time 3/4 \nujb g'4^\labelB \set Timing.beamExceptions = #'() \set Timing.baseMoment = #(ly:make-moment 1/4) \set Timing.beatStructure = #'(1 1 1 1) d4 e ~ e8 c a4 b ~ b8 d c4 ~ c8 a ~ a fis \partial 2 g2 \bar "||" } bass = \relative c'' { \global \voiceTwo \partial 4 g4 b g e ~ e8 fis ~ fis g ~ g b, a4 c d ~ d8( b8 \once \override TextScript.extra-offset = #'(2. . 1) g4)^\markup { "or:"} \time 3/4 r8 g'8 ~ g b8 ~ b g e4 ~ e8 fis ~ fis g b,4 ~ b8 a c4 d8 c \partial 2 b8( d g,4) } %%%%%%%%%%%%%%%%%%%%%%%%%% 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. "81." } \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 } }