%---------------------------------------------------------------- % _ _ _ _ % | | (_) |_ _ _ __ ___ _ __ __| | % | | | | | | | | '_ \ / _ \| '_ \ / _` | % | |___| | | |_| | |_) | (_) | | | | (_| | % |_____|_|_\\__, | .__/ \___/|_| |_|\__,_| % |___/|_| % % 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-right = ##f } #(ly:set-option 'point-and-click #f) #(set-global-staff-size 32) global = { \time 2/4 % \numericTimeSignature %\key c \major \set Staff.midiInstrument = "piano" %\override Score.MetronomeMark #'padding = #3.8 \override Staff.TimeSignature #'stencil = ##f \override TextSpanner.bound-details.left.stencil-align-dir-y = #CENTER %\set Timing.beamExceptions = #'() %\set Timing.baseMoment = #(ly:make-moment 1/4) %\set Timing.beatStructure = #'(1 1 1 1) \override HorizontalBracket.thickness = #2 \override Glissando.thickness = #3 } melody = \relative c'' { \global \override HorizontalBracket #'direction = #UP c8[_\markup \tiny {Good.}\glissando d\startGroup dis\stopGroup \glissando e] c[_\markup \tiny {Good.}\glissando b\startGroup bes\stopGroup \glissando a] \time 3/8 e'8\glissando d_\markup \tiny {"?"} dis \break a8\glissando b_\markup \tiny {"?"} bes d8_\markup \tiny {Bad.} dis\glissando cis b8_\markup \tiny {Bad.} bes\glissando c \bar "||" } %%%%%%%%%%%%%%%%%%%%%%%%%% 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 { Ex. "73." } \context Voice = "melody" \with { \consists "Horizontal_bracket_engraver" } \melody >> \layout { \context { \Score \remove "Bar_number_engraver" } } \midi { \tempo 4 = 80 } }