%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_|\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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.html % %---------------------------------------------------------------- \version "2.18.0" %\include "showlast.ly" %\include "showfirst.ly" \header { tagline = "" % removed } \paper { #(set-paper-size "letter") ragged-last-bottom = ##t } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) FO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \once \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) sfod = \set fingeringOrientations = #'(down) 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"} four = \finger \markup \teeny {\fontsize #-2 "4+"} sixeight = \finger \markup \teeny {\fontsize #-2 {\tied-lyric #"6~8"}} global = { \time 3/4 \override Staff.BarLine.allow-span-bar = ##f %\numericTimeSignature %\key c \major \set Staff.midiInstrument = "piano" %\override Score.MetronomeMark #'padding = #3.8 %\override Staff.TimeSignature #'stencil = ##f \override HorizontalBracket #'direction = #UP \override HorizontalBracket.thickness = #2 \override HorizontalBracket.extra-offset = #'( -0.6 . 1.2) % \set Timing.beamExceptions = #'() % \set Timing.baseMoment = #(ly:make-moment 1/4) % \set Timing.beatStructure = #'(1 1 1 1) \override Glissando.thickness = #3 } sop = \relative c'' { \global \tuplet 3/2 4 {r8 e a, \override TupletNumber.stencil = ##f \override TupletBracket.bracket-visibility = ##f gis a b a b c | d e f e d c b\nct c a } d4 \tuplet 3/2 4 {r8 d c b c\nct\glissando a | gis fis gis } a2 \bar "|." } bass = \relative c' { \global \override TupletNumber.stencil = ##f \override TupletBracket.bracket-visibility = ##f \clef "bass" \sfod 4 \tuplet 3/2 4 {8 b a} 4 \tuplet 3/2 4 {8 g!\nct\startGroup e\nct } 4\stopGroup \tuplet 3/2 4 {8( e c} 4) } \score { \new PianoStaff \with { \override StaffGrouper.staff-staff-spacing = #'( (basic-distance . 2) (padding . 5)) } << \set PianoStaff.instrumentName = \markup \center-column { Ex. "76." } \new Staff = "up" << \context Voice = "soprano" \sop >> \new Staff = "down" << %\context Voice = "intervals" \intervals %\context Voice = "tenor" \tenor \context Voice = "bass" \with { \consists "Horizontal_bracket_engraver" } \bass >> >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi {\tempo 4 = 100} }