%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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 } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 26) global = { %\time 3/4 %\numericTimeSignature %\key gis \minor \set Staff.midiInstrument = "piano" \override Staff.TimeSignature #'stencil = ##f } sop = \relative c' { \global %\voiceOne %\clef "bass" %\tempo 4 = 60 c16(^\markup \tiny {"a."} e g c e g, c e) c,16(_\markup \tiny {"Repetition."} e g c e g, c e) \bar "||" s1 \key g \major \time 6/8 g,8(^\markup \tiny {"b."} a16 g fis g) a8(_\markup \tiny {"Sequence."} b16 a g a) } 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 { Ex. "" } \context Voice = "melody" \sop \context Voice = "middle" \middle \context Voice = "bass" \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 72 } }