%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 "style.ily" \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 \override HorizontalBracket #'direction = #UP \override HorizontalBracket.extra-offset = #'( -0.3 . -0.0) e4 d c b\startGroup bes\stopGroup^\markup {"F"} a\startGroup aes\stopGroup^\markup {"E♭"} g g\startGroup gis\stopGroup^\markup {"a"} a\startGroup ais\stopGroup^\markup {"b"} b4 d8 cis b2 \bar ".." % e4^\markup {"2."} d c\startBarre "CI" b | % bes a aes g\stopBarre | % g\startBarre "CI" gis a ais\stopBarre | % b4.^\markup {"C V7"} d8 c2 % \bar "|." } alto = \relative c' { \global \voiceTwo g'4 f e d c c bes bes es f e g | fis4. e8 d2 % e4 f g fis | % f! e es d | % e d es e | % f2 e } bass = \relative c' { \global \voiceTwo \clef "bass" c4 b c g e f d es bes b c cis | d4 fis b2 % \override Staff.Fingering.padding = #2 % c,4 d e dis-6 | % d!-6 cis-6 c-6 b | % c b-6 c-6 cis-6 | % d-6 g c,2 } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \new PianoStaff \with { \override StaffGrouper.staff-staff-spacing = #'( (basic-distance . 2) (padding . 2)) } << \set PianoStaff.instrumentName = \markup \center-column { Ex. "135-1." } \new Staff = "up" << \context Voice = "sop" \with { \consists "Horizontal_bracket_engraver" } \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 = 76} }