\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Gioia et amore" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria I. per le Lodi Della I. Maniera" composer = "Lodi et canzonette, 1608, p. 26--27" poet = "" tagline = ##f } genStuff = { \key f\major \time 3/2 \layoutTweaks \revert Staff.TimeSignature #'style } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \set Staff.midiInstrument = "oboe" %music \once \override TextScript #'padding = #2 c'2^\markup { \italic { \bold { Aria I. per le Lodi Della I. Maniera } } (pp. 26–27) } bes2 g a1 a2 bes bes a bes1 bes2 d ees2 c d1 d2 c c b2 c1 c2 g g a bes1 bes2 c a a g1 g2 a a g f1 f2 a g g f1 f2 } melodyAlt = \relative c' { \genStuff \clef treble \CSec \set Staff.midiInstrument = "clarinet" %music f2 d e2 f1 f2 f g f f1 f2 f g a bes1 bes2 g a g g1 g2 e e f g1 g2 g fis2 fis g1 g2 f2 f e d1 d2 f f e f1 f2 } melodyBass = \relative c { \genStuff \clef bass \Basso \set Staff.midiInstrument = "bassoon" %music f2 g c,2 f1 f2 bes,2 ees2 f bes,1 bes2 bes ees f bes,1 bes2 c f g c,1 c2 c c f ees1 ees2 c d d g1 g2 d f c d1 d2 a bes c f,1 f2 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Gio -- "ia &" a -- mo -- re sen -- te_il mio co -- re: Gie -- sù di -- let -- to, nel va -- go_a -- spet -- to: Cuan -- do_io ti guar -- do mi strug -- "go &" ar -- do ò fan -- ciul -- li -- no, al -- mo_e di -- ui -- no. } %% score % for layout: \score { \context StaffGroup = choirStaff << \context Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics \lyricsto "sop" \textSoprano \context Voice = alt { \autoBeamOff \melodyAlt } \new Lyrics \lyricsto "alt" \textSoprano \context Voice = bas { \autoBeamOff \melodyBass } >> \layout { indent = 1\cm \context { \Lyrics \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } } \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyBass >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 100 2) } } }