%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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" %\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) 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 \set Timing.beamExceptions = #'() \set Timing.baseMoment = #(ly:make-moment 1/4) \set Timing.beatStructure = #'(1 1 1 1) \override Glissando.thickness = #3 \override TupletBracket.stencil = ##f } sop = \relative c'' { \global \voiceOne \partial 4 c4 b4 ~ b16 a b c d4 b c4 ~ c16 g' f e d4 f f g8. f16 e4 c ~ c16 b d c c b^\markup {"N.B."} a b c2 \bar "|." } alto = \relative c' { \global \voiceTwo \partial 4 e4 ~ e16 f d e f4 ~ f r16 d e f g16 a g f e4 r16 g fis g a4 b16 a b c d4 ~ d16 c b a g8 aes16 g f4 ~ f16 d g f e2 } tenor = \relative c { \global \clef "bass" \oneVoice \override TupletNumber.stencil = ##f \partial 4 r16 c e f g4 a r16 f e f g8 f e16 f e d c8_\markup {"Par. 75."} c' b4 r16 a, b c d8. c16 b_\markup {"Par. 121."} d g b c4 r16 e, f g aes4 g r16 c16 g e c4 } bass = \relative c { \global \clef "bass" \voiceTwo } \score { \new PianoStaff << \set PianoStaff.instrumentName = \markup \center-column { Ex. "146." } \new Staff = "up" << \context Voice = "soprano" \sop \context Voice = "alto" \alto >> \new Staff = "down" << \context Voice = "tenor" \tenor \context Voice = "bass" \bass >> >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi {\tempo 4 = 60} }