%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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" \header { tagline = "" % removed } \paper { #(set-paper-size "letter") %ragged-last-bottom = ##t ragged-last = ##t } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) nct = \finger \markup \teeny {\fontsize #-3 "x"} labelA = \markup {\tiny {\italic {"a."}}} labelB = \markup {\tiny {\italic {"b."}}} labelC = \markup {\tiny {\italic {"c."} (from \italic { a.})}} labelD = \markup {\tiny {\italic {"d."} (from \italic { b.})}} four = \finger \markup \teeny {\fontsize #-2 "4+"} nuj = \once \override TextScript.extra-offset = #'(-3 . 0) FO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \once \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) GFO = #(define-music-function (parser location offsetX offsetY) (number? number?) #{ \override Voice.Fingering.extra-offset = #(cons offsetX offsetY ) #}) global = { \time 2/4 % \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) \override HorizontalBracket.thickness = #2 \override HorizontalBracket #'direction = #UP \override TupletNumber.stencil = ##f \override TupletBracket.bracket-visibility = ##f } melody = \relative c'' { \global \voiceOne \partial 4 \nuj e4^\labelD d b c f f b, c2 \bar "||" } middle = { } bass = \relative c' { \voiceTwo \partial 4 r16 c d e ~ e f d e ~ e f g f ~ f e f g ~ g a f e ~ e d e f ~ f g a f ~ f e f d c4 } %%%%%%%%%%%%%%%%%%%%%%%%%% 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 { and: } \context Voice = "melody" \with { \consists "Horizontal_bracket_engraver" } \melody %\context Voice = "middle" \middle \context Voice = "bass" \with { \consists "Horizontal_bracket_engraver" } \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 50 } }