%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 32) global = { \time 2/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 TupletNumber.stencil = ##f \override TupletBracket.stencil = ##f } sop = \relative c'' { \global \voiceOne e4^\markup {\italic {\tiny {"a."}}} c | b cis \bar "||" \break \oneVoice e4^\markup {\italic {\tiny {"b."}}} c | b cis \bar "||" } % alto = \relative c'' { % \global % \voiceTwo % } % tenor = \relative c' { % \global % \clef "bass" % \voiceOne % } bass = \relative c' { \global \clef "bass" \voiceTwo \tuplet 3/2 4 {c8( c,) d \stemUp e( \change Staff = "up" \stemDown e') fis g( \change Staff = "down" \stemUp g,) f! e( \change Staff = "up" \stemDown e') g^\markup {"etc."} } %%%%%% segment B %%%%%%%% \change Staff = "down" \oneVoice c,,16( c' c,) d e( e' e,) fis | g16( g, g') f! e( e' e,) g^\markup {"etc."} } \score { \new PianoStaff << \set PianoStaff.instrumentName = \markup \center-column { Ex. "104." } \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 {} }