% Created on Sun Nov 09 17:28:18 EST 2008 \version "2.11.63" #(ly:set-option 'delete-intermediate-files #t) #(ly:set-option 'point-and-click #t) #(set-global-staff-size 24) \paper { #(set-paper-size "a4") top-margin = 1.5\cm bottom-margin = 1.5\cm line-width = 18\cm % ragged-bottom = ##f % ragged-last-bottom = ##f } \header { title = "Pezzo Tedesco" composer = "Anon. (c. 1575)" } \include "english.ly" % treble up = \relative c' { \textSpannerUp % \override Fingering #'font-size = #0 \set fingeringOrientations = #'(left) \set strokeFingerOrientations = #'(up) \set stringNumberOrientations= #'(down) 4 | 4. 8 e4 4 | e e | 2. 8 | b4 2 | %5 2. c8 d | 4 | 4. 8 e4 4 | e e ds | 8 e f e d c | %10 4 2 | 2. 4 | } % bass down = \relative c' { \textSpannerUp % \override Fingering #'font-size = #0 \set fingeringOrientations = #'(left) \set strokeFingerOrientations = #'(up) \set stringNumberOrientations= #'(down) a4 a a2 | 2. 4 | 2 | e, | d | %5 a,2. r4 | a4 a a2 | 2. 4 | 2 | | %10 e4 e2 | 2. 4 | } middle = \relative c' { \textSpannerUp % \override Fingering #'font-size = #0 \set fingeringOrientations = #'(left) \set strokeFingerOrientations = #'(up) \set stringNumberOrientations= #'(down) \repeat unfold 4 {s1} s2 a'4 gs | %5 \repeat unfold 5 {s1} s2 a4 gs | %11 } thescore = \score { << \context Staff = guitar { \set Staff.midiInstrument = "acoustic guitar (nylon)" \clef treble \key c \major \time 4/4 \tempo 4 = 72 << \context Voice = "1" { \voiceOne \up } \context Voice = "2" { \voiceTwo \down } \context Voice = "3" { \voiceThree \middle } >> } >> \layout { } \midi { } } % only output last five measures (of 4/4) % useful for checking output while inputting %showLastLength = R1*5 \score { \thescore }