%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_|\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 = ##t ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 28) global = { \time 2/4 \key b \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 \override HorizontalBracket.thickness = #2 \override HorizontalBracket #'direction = #UP } melody = \relative c' { \global \clef "bass" \voiceOne %\oneVoice \teeny { \partial 4 r4 r16 fis gis ais b4 } } middle = \relative c'' { \global \voiceThree \teeny { \stemDown \partial 4 s4 \override Voice.Stem.details.beamed-lengths = #'(7) s4 s16 g16[ fis e] } } bass = \relative c { \global \voiceFour \partial 4 r16 ais16 b cis d4 ~ d16 e d cis d e d cis d8 dis \break e16 dis e fis g8 gis \oneVoice a8. b16 cis a, b cis d8 d16( c b cis dis b \break e16) d!( cis b a b cis a bes8.) a16 gis8. g16 fis8 fis'16 f e8 es d16 f e cis! d cis d e \break fis4 ~ fis16 g( fis eis fis!) g,( fis eis fis) g( fis e d8) d' e fis r16 d( b fis b,4) } inversions = \figuremode { %\bassFigureExtendersOn \set Staff.ignoreFiguredBassRest = ##f \override Staff.BassFigure.staff-padding = #'() } %%%%%%%%%%%%%%%%%%%%%%%%%% 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 { "" } \context Voice = "melody" \with { \consists "Horizontal_bracket_engraver" } \melody \context Voice = "middle" \middle \context Voice = "bass" \bass \new FiguredBass { \override FiguredBass.BassFigure #'font-size = #-2 \inversions } >> \layout { \context { \Score \remove "Bar_number_engraver" } indent = #0 } \midi { \tempo 4 = 66 } }