\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Quando rimiro il Ciel " subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria IV. per le Lodi Della V. Maniera" composer = "Lodi et canzonette, 1608, pp. 54ff" poet = "" } %% Macros genStuff = { \key f \major \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \set Staff.midiInstrument = "oboe" %music \partial 2 \once \override TextScript #'padding = #2 r4^\markup { \italic { \bold { Aria IV. per le Lodi Della V. Maniera } } (pp. 54–55) } c' c4. c8 d4 e f2 r r8 f e d e2 d2*2 \fullBarDbl \break r2 r8 c c c f4 e d4. c8 bes4 ees4 d2 c1 r2 d2. a8 a a2 r8 a a bes c2. g4 g2 f1 } melodyAlt = \relative c' { \genStuff \clef treble \CSec \set Staff.midiInstrument = "clarinet" %music r4 a'4 a4. a8 a4 c c2 r8 d c bes cis4 d2 cis4 d2*2 r8 g,8 g g a4 g f g8 a bes2. c4 b2 c1 r2 bes2. f8 f f2 r8 f f g a4 f e f2 e4 f1 } melodyBass = \relative c { \genStuff \clef bass \Basso \set Staff.midiInstrument = "bassoon" %music r4 f f4. f8 d4 c f2 r8 d e g a1 d,2*2 r8 c c c f4 e d c bes2 ees2 g2 c,1 bes2. d8 d d2 r8 f f e8 d2 a c1 f1 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Quan -- do ri -- mi -- ro_il Ciel cin -- to di lu -- me: al -- ti so -- spi -- ri_in van ri -- trag -- gio_e gri -- do; ò chi fia mai, che’n te mi pon -- ga_vn ni -- do. } textBass = \lyricmode { %\set stanza = "1. " %text vers 1 Quan -- do ri -- mi -- ro_il ciel cin -- te di lu -- me al -- ti so -- spi -- ri_in van ri -- trag -- gio_e gri -- do o chi fia mai, che’n te mi pon -- ga_un ni -- do } %% score % for layout: \score { << \context StaffGroup = choirStaff << \new Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics = "sopText" {s1} \new Voice = alt { \autoBeamOff \melodyAlt \fullBarFinal } \new Lyrics = "basText" {s1} \new Voice = bas { \autoBeamOff \melodyBass \fullBarFinal } >> \context Lyrics = sopText \lyricsto "sop" \textSoprano \context Lyrics = basText \lyricsto "bas" \textBass >> \layout { indent = 1\cm \context { \Lyrics \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } } %\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 2) } } }