%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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-right = ##f ragged-bottom = ##t ragged-last-bottom = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) eeCee=\markup \center-column { \whiteout \pad-markup #0.5 "e" \whiteout \pad-markup #0.5 "c"} ceeEee=\markup \center-column { \whiteout \pad-markup #0.5 "c" \whiteout \pad-markup #0.5 "e"} deeDee=\markup \center-column { \whiteout \pad-markup #0.5 "d" \whiteout \pad-markup #0.5 "d"} 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 % \set Timing.beamExceptions = #'() % \set Timing.baseMoment = #(ly:make-moment 1/4) % \set Timing.beatStructure = #'(1 1 1 1) \override Glissando.thickness = #4 \override TupletBracket.stencil = ##f } sop = \relative c'' { \global \voiceOne c4^\markup \tiny {"Prolonged Tonic chord (C major)."} ~ c16 b c d e d e( f g4) ~ g4 \bar "||" } alto = \relative c' { \global \voiceTwo r16 d e-3 f-3 g4 ~ g8. f16( e g f e d4 } tenor = \relative c { \global \override TextSpanner.bound-details.left.text = #"C: I" \override TextSpanner.bound-details.right.text = #"V" \override TextSpanner.font-shape = #'upright \override TextSpanner.bound-details.left.stencil-align-dir-y = #CENTER \override TextSpanner.bound-details.right.stencil-align-dir-y = #CENTER \textSpannerDown \set fingeringOrientations = #'(down) %\override Voice.Fingering.padding = #2 \clef "bass" \oneVoice c8.\startTextSpan d16 e-3 g-3 a-3 b-3 c4-3 ~ c16 e-3 d-3 c-3 b4-3\stopTextSpan } bass = \relative c { \global \clef "bass" \voiceTwo } \score { \new PianoStaff << \set PianoStaff.instrumentName = \markup \center-column { Ex. "148-1." } \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} }