\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Passano i giorni, i mesi, e volan gli anni" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria XIII. per le Lodi Della XVI. Maniera" composer = "Lodi et canzonette, 1608, pp. 244f" poet = "" } %% Macros genStuff = { \key g\dorian \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \set Staff.midiInstrument = "church organ" \CPrim \once \override TextScript #'padding = #2 %music r4^\markup { \italic { \bold { Aria XIII. per le Lodi Della XVI. Maniera } } (pp. 244–45) } a'4. a8 bes4 | c g a2 ~ | a8 f'8 e d e2 |\break d4 d4. d8 e4 | f c d2 ~ | d8 bes8 a g a2 | g2 \fullBarDbl \break r2 r8 g'8 d e f4 f ees8 d ees! c d2%\markup{"orig: d2 c r2"} c2 \bar "" \break %d2 c r2 r2 r8 d a bes c4 c bes8 a bes g a2 g2*2 } melodyAlt = \relative c' { \genStuff \clef treble \CSec \set Staff.midiInstrument = "drawbar organ" %music r4 fis4. fis8 g4 g e4 f8%\markup{"orig: fis"} d'8 cis8 b8 cis4 d2 cis4 d b4. b8 c4 c a bes8 g fis e fis4 g2 fis4 g2 r8 es'8 bes8 c d4 d c8 bes c a b4 c2 b!4 c2 r8 bes8 f8 g a4 a g8 f g e fis4 g2 fis4 g2*2 } melodyBass = \relative c { \genStuff \clef bass \Basso \set Staff.midiInstrument = "rock organ" %music r4 d4. d8 g4 c,4 c f8 f e d a'1 d,4 g4. g8 c,4 f f bes,8 bes'8 a g d1 g2 r8 c8 g a bes4 bes aes8 g aes f g1 c,2 r8 g'8 d e f4 f ees8 d ees c d1 g2*2 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Pas -- san -- no_i gior -- ni,_i me -- si_e vo -- lan gli_an -- ni, fug -- gon ve -- lo -- ci l'ho -- re_og -- ni mo -- men -- to, fug -- ge la vi -- ta più che neb -- bia_al ven -- to veg -- go la mor -- te_e_i suoi sot -- ti -- li_in -- gan -- ni. } textAlto = \lyricmode { %\set stanza = "1. " %text vers 1 Pas -- san -- no_i gior -- ni,_i me -- si_e vo -- lan gli_an -- _ _ ni, fug -- gon ve -- lo -- ci l'ho -- re_og -- ni mo -- men -- _ _ to, fug -- ge la vi -- ta più che neb -- bia_al ven -- _ _ to veg -- go la mor -- te_e_i suoi sot -- ti -- li_in -- gan -- _ _ ni. } %% score % for layout: \score { \context StaffGroup = choirStaff << \context Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics \lyricsto "sop" \textSoprano \context Voice = alt { \autoBeamOff \melodyAlt \fullBarFinal } \new Lyrics \lyricsto "alt" \textAlto \context Voice = bas { \autoBeamOff \melodyBass \fullBarFinal } >> \layout { indent = 1\cm \context { \Lyrics \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } } %for midi \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyBass >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 100 4) } } }