%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_|\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) nct = \finger \markup \teeny {\fontsize #-3 "x"} nonum = \override TupletNumber.stencil = ##f global = { \time 4/4 \key bes \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 \override TupletBracket.stencil = ##f %\override TupletNumber.stencil = ##f } melody = \relative c'' { \global %\voiceOne d4( bes g g') es( c a a') bes4 \tuplet 3/2 4 {aes8( g f)} g4 \nonum \tuplet 3/2 4 {b,8 c d} es4 \tuplet 3/2 4 {a,8 f' es \voiceOne d es c} bes4 \bar "||" } middle = \relative c' { \global } bass = \relative c' { \global \voiceTwo \teeny { s1*3 s2 bes2 } } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \context Staff = "guitar" \with { \consists "Span_arpeggio_engraver" %\accidentalStyle modern } << \set Staff.midiInstrument = "piano" \set Staff.connectArpeggios = ##t \numericTimeSignature \set Staff.instrumentName = \markup \center-column { "6." } \context Voice = "melody" \melody %\context Voice = "middle" \middle \context Voice = "bass" \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 2 = 72 } }