%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_|\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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.html % %---------------------------------------------------------------- \version "2.18.0" \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 4/4 % \numericTimeSignature \key fis \minor \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 } melody = \relative c' { \global %\voiceOne % r8^\markup \tiny {"a. As upper part"} e dis[ cis] bis4 dis | % cis a' fis gis8 dis | % e4 bis cis a | % gis4 ais8 bis cis2 % \bar "||" % \break %\key fis \minor fis4^\markup \tiny {"b. As lower part"} gis8 a b cis dis eis fis d b a gis fis eis d' cis b a gis b a gis fis eis b' a gis fis2 \bar "||" } solution = \relative c { \global %\voiceTwo \clef "bass" % cis4 fis8 a gis a fis gis % e gis fis e dis cis bis dis % cis e dis fis e gis fis cis % bis dis fis4 e8( dis cis4) %\key fis \minor \transpose e a, { \relative c { r8 e' dis[ cis] bis4 dis | cis a' fis gis8 dis | e4 bis cis a | gis4 ais8 bis cis2 } } } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \new PianoStaff << \set PianoStaff.instrumentName = \markup \center-column { "7-6" } \new Staff = "up" << \context Voice = "soprano" \melody %\context Voice = "alto" \alto >> \new Staff = "down" << %\context Voice = "tenor" \tenor \context Voice = "bass" \solution >> >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi {\tempo 4 = 100} }