%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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-right = ##t ragged-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 32) global = { \time 4/4 \key c \major \set Staff.midiInstrument = "piano" } melody = \relative c'' { \global \voiceOne e4 c b f' | e f d e | c4^\markup \tiny {"etc."} \bar "||" } bass = \relative c' { \global \voiceTwo c8 d e f g g, a b | c c' b a b b, a g | a4 } %%%%%%%%%%%%%%%%%%%%%%%%%% SCORE BLOCK %%%%%%%%%%%%%%%%%%%%%% \score { \context Staff = "guitar" << \numericTimeSignature \set Staff.instrumentName = \markup \center-column { Ex. "65." } \context Voice = "melody" \melody %\context Voice = "middle" \middle \context Voice = "bass" \bass >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 80 } }