%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 = ##f ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 26) global = { \time 4/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 TextSpanner.bound-details.left.stencil-align-dir-y = #CENTER % \set Timing.beamExceptions = #'() % \set Timing.baseMoment = #(ly:make-moment 1/4) % \set Timing.beatStructure = #'(1 1 1 1) } sop = \relative c' { \global \voiceOne \teeny { \partial 4 c^\markup {"1."} d f f d e4. c'8 b4 d d b c g a g8 d' c4 \bar "||" e,4^\markup {"2."} g4 f f a g4. c8 b4 d c b c a! f4. g8 e4 } } alto = \relative c { \global \teeny { \voiceTwo \showStaffSwitch \change Staff = "down" \voiceOne \partial 4 e4 g c b g g4. \change Staff = "up" \voiceTwo g'8 f4 a8 f d2 g4 e d4. g8 e4 % 2 c4 d c b f' e4. c8 f4 a aes g e d2 c4 } } bass = \relative c { \global \clef "bass" \override Voice.Fingering.padding = #1.5 \voiceTwo \partial 4 c4 b a d b c4. e8 d4 f \oneVoice f g e c c4. b8 c4 c b4 a d b c4. e8 d4 f f g e c c4. b8 c4 \bar "|." } inversions = \figuremode { %\bassFigureExtendersOn \set Staff.ignoreFiguredBassRest = ##f \override Staff.BassFigure.staff-padding = #'() s4 s2 <6>4 <6>4 s4. <6>8 <6>4 <6>4 s1 s2. s4 <6>4 <6>4 s2 s4. <6>8 <6>4 <6>4 s2 <6>4 <6>4 } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \new PianoStaff \with { \override StaffGrouper.staff-staff-spacing = #'( (basic-distance . 2) (padding . 2)) } << \set PianoStaff.instrumentName = \markup \center-column { Ex. "143." } \new Staff = "up" << \context Voice = "soprano" \sop \context Voice = "alto" \alto >> \new Staff = "down" << %\context Voice = "tenor" \tenor \context Voice = "bass" \bass \new FiguredBass { \override FiguredBass.BassFigure #'font-size = #-2 \inversions } >> >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi {\tempo 4 = 76} }