%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_|\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 3/8 % \numericTimeSignature \key b \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 } melody = \relative c'' { \global %\voiceOne % b8^\markup \tiny {"a. As upper part"} % dis cis fis % dis e cis % dis b cis % ais16( b cis dis e cis) % dis8 fisis, gis % ais cis fis! % e dis cis % b4 % \bar "||" \partial 8 r16^\markup \tiny {"b. As lower part"} b fis( gis ais) cis b ais( b) fis'( gis) b,( ais) e'( dis fisis, gis) dis'( cis eis, fis4) gis16 ais b( cis dis) ais b e cis( dis e) cis ais fis gis( ais b) fis e fis dis([ cis b8)] \bar "||" } solution = \relative c { \global %\voiceTwo \clef "bass" \partial 8 % dis16 cis % b b' ais gis ais cis( % b a gis) b( ais gis % fisis) ais( gis fis eis gis) % fis4 cis16 e % dis ais' dis cis b dis( % cis b ais) gis ais fis( % gis ais b) dis,( e fis) % b,4 b8 dis cis fis dis e cis dis b cis ais16( b cis dis e cis) dis8 fisis, gis ais cis fis! e dis cis b4 } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \new PianoStaff << \set PianoStaff.instrumentName = \markup \center-column { "8-11" } \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 = 60} }