%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_|\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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/2 % \numericTimeSignature \key f \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 \partial 2 % f2^\markup \tiny {"a. As upper part"} % c2 bes a | % bes bes g | % c2( f,4) g a bes | % a2( g) r4 bes | % bes2 a d | % c e, f | % g4 a bes2 g | % f1 % \bar "||" \once \override TextScript.extra-offset = #'(-3.0 . 0.0) \break a2^\markup \tiny {"b. As lower part"} g e f d g bes bes a4 g f g f2( e) r4 d c2 f f e bes' a g4 f g2 e f1 \bar "||" } solution = \relative c' { \global \voiceTwo \partial 2 % f2 % e1 f2 % d c bes % a2. c4 f d % c1 c2 % d( c bes) % c( bes a) % bes4( a g2) c % f,1 f2 c bes a bes bes g c f,4 g a bes a2( g) r4 bes bes2 a d c e, f g4 a bes2 g f1 } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \context Staff = "guitar" \with { \consists "Span_arpeggio_engraver" } << \set Staff.midiInstrument = "piano" \set Staff.connectArpeggios = ##t %\numericTimeSignature \set Staff.instrumentName = \markup \center-column { "6-5." } \context Voice = "melody" \melody \context Voice = "solution" \solution >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 2 = 84 } }