#(ly:set-option 'old-relative) \header { lastupdated = "Time-stamp: \"carulli-duet-in-g.ly was last updated on Sat, 16 Oct 1999 05:18pm\"" filename = "carulli-duet-in-g.ly" title = "Duet in G" subtitle = "for two guitars" piece = "Andante" opus = "" composer = "Ferdinando Carulli (1770-1841)" %{ i know that piece = "tempo" isn't correct, but it looks better than attaching it to the first note. %} % needed by mutopia: mutopiainstrument = "Guitar Duet" mutopiacomposer = "Ferdinando Carulli (1770-1841)" date = "19th C." style = "Classical" copyright = "Public Domain" maintainer = "Jeff Covey" maintainerEmail = "jeff.covey@pobox.com" tagline = "\\parbox{\\hsize}{\\thefooter\\quad\\small\\noindent\\hspace{\\stretch{1}} This music is part of the Mutopia project: \\hspace{\\stretch{1}} \\texttt{http://www.MutopiaProject.org/}\\\\ \\makebox[\\textwidth][c]{It has been typeset and placed in the public domain by " + \maintainer + ".} \\makebox[\\textwidth][c]{Unrestricted modification and redistribution is permitted and encouraged---copy this music and share it!}}" footer = "Mutopia-2004/10/21-17" } \version "2.2.0" global = \notes { \key g \major \time 12/8 \skip 1.*16 \bar "|." } guitarone = \notes \relative c'' { b8[ g d'] c[ a e'] d[ g fis] g[ fis e] < d b >4. < c a > < b g > r4 r8 a8[ gis b] a[ c b] c[ e dis] e[ c a] b[ d cis] d[ c b] a4. r4 r8 % 5 b8[ g d'] c[ a e'] d[ g fis] g[ fis e] < d b >4. < c a > < b g > r4 r8 a8[ gis b] c[ d e] d[ g d] c[ b a] g[ g' d] b[ d b] g4. r4 r8 % 9 d'8[ c b] b[ a gis] gis4 r8 r e'[ d] c[ e d] b[ d c] a4 r8 r4 r8 c[ b a] a[ g fis] fis4 r8 r d'[ c] b[ d c] a[ c b] g4 r8 r4 r8 % 13 e'4. r4 r8 r a,[ b] c[ d e] d4. r4 r8 r g,[ a] b[ c d] e[ fis g] e[ c a] g[ g' d] c[ b a] g[ g' d] b[ d b] g4. r4 r8 } guitartwo = \notes \relative c' { g4 b'8 a,4 c'8 b,4 d'8 e[ d c] < d, b' >4. < dis fis > < e g > g,8[ a b] < c e >4 r8 < c e >4 r8 < c e >4 r8 < c e >4 < cis e >8 < d[ g >8 b' ais] b[ a g] fis[ e d] c[ b a] % 5 g4 b'8 a,4 c'8 b,4 d'8 < c, e'[ > d' c] < d, b' >4. < dis fis > < e g > g,8[ a b] < c e >4 r8 < c e a >4 r8 < d g b >4 r8 < d a'[ > g fis] < g, g' >4. < g b d g > < g b d g > r4 r8 % 9 < e' gis b >4. r4 r8 r e[ fis] gis[ a b] < a, a' >4 r8 < e gis' >4 r8 a[ a' g] fis[ g e] < d fis a >4 r8 r4 r8 r8 d[ e] fis[ g a] g4 r8 < d fis >4. e,8[ g' a] b[ c d] % 13 c,8[ c' b] c[ a g] fis2. b,8[ b' ais] b[ g fis] e2. < c c'[ >8 d' e] c4 c,8 < d g >4 b'8 < d, a'[ > g fis] < g, g' >4. < g b d g > < g b d g > r4 r8 } guitaroneStaff = \context Staff = guitarone << \set Staff.midiInstrument = "acoustic guitar (nylon)" \set Staff.transposing = -12 % guitar music actually sounds an % octave lower than written. \notes \context Voice=guitarone<< \global \guitarone >> >> guitartwoStaff = \context Staff = guitartwo << \set Staff.midiInstrument = "acoustic guitar (nylon)" \set Staff.transposing = -12 % guitar music actually sounds an % octave lower than written. \notes \context Voice=guitartwo<< \global \guitartwo >> >> \score { \context StaffGroup = duet << \guitaroneStaff \guitartwoStaff >> \paper { linewidth = 18.0 \cm % gourlay_maxmeasures =8. % \context { \BarNumberingStaffContext } } \midi { \tempo 8=228 } }