%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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" %\include "style.ily" %\include "showfirst.ly" \header { tagline = "" % removed } \paper { #(set-paper-size "legal") ragged-last = ##f %system-count = 2 } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 26) global = { \time 2/2 %\numericTimeSignature \key b \minor \set Staff.midiInstrument = "piano" %\override Staff.TimeSignature #'stencil = ##f } sop = \relative c' { \global % \voiceOne %\repeat volta 2 {} \partial 2 fis2 b2 a2 g2 fis2 e2 a4 g4 fis2\fermata cis'2 d2 d2 cis2 cis2 b1\fermata r2 d2 cis4 b4 a2 b2 cis2 d1 d2\fermata a2 b2 a2 g2 a4 g4 fis1\fermata r2 d'2 cis4 d4 e2 d2 cis2 b1 cis2\fermata fis,2 g2 fis2 e2 a4 g4 fis1\fermata ~ fis2 \bar ".." } middle = \relative c' { \global } bass = \relative c' { \global % \voiceTwo } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \context Staff = "guitar" \with { \consists "Span_arpeggio_engraver" } << \global \set Staff.midiInstrument = "piano" %\numericTimeSignature \set Staff.instrumentName = \markup \center-column { "14." } \context Voice = "melody" \sop % \context Voice = "middle" \middle \context Voice = "bass" \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 2 = 92 } }