% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Anime affaticata" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria XVI. per le Lodi Della XVIII. Maniera." composer = "Lodi et canzonette, 1608, p. 294f" poet = "" } %% Macros genStuff = { \key g \mixolydian \time 3/2 \layoutTweaks \override Staff.TimeSignature #'style = #'single-digit } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 %music \time 3/2 d'4^\markup { \italic { \bold { Aria XVI. per le Lodi Della XVIII. Maniera } } (pp. 294–95) } d c b2 a4 \once \override Staff.TimeSignature #'style = #'mensural \time 4/4 b4. d8 c4 b a2 g %d'4 \times 2/3 { d c2 } \times 2/3 { b2 a4 } b4. d8 c4 b a2 g r4 c c4. c8 \break c4 d e e a, b b2 a r4 d c a b2. e4 c4. f8 e4 d d2 c r2 e2 a,4 b b2 a r2 d2 g,4 a a2 g1 \bar "|." } melodyAlt = \relative c' { \genStuff \clef treble \CSec %\once \override Staff.TimeSignature #'style = #'single-digit %music g'4 g e g2 c,4 %g'4 \times 2/3 { g e2 } \times 2/3 { g2 c,4 } \once \override Staff.TimeSignature #'style = #'mensural g'4. g8 e4 g g fis4 g2 r4 a4 a4. a8 a4 b c c e,4 fis gis2 a r4 g4 g fis g2. g4 a4. d8 c4 a b2 c c a2. fis4 gis2 a b g2. e4 fis2 g1 } melodyBass = \relative c { \genStuff \clef bass \Basso %\once \override Staff.TimeSignature #'style = #'single-digit %music g'4 g a g2 f4 \once \override Staff.TimeSignature #'style = #'mensural e4. b8 c4 g d'2 g %g'4 \times 2/3 { g a2 } \times 2/3 { g2 f4 } e4. b8 c4 g d'2 g r4 f4 f4. f8 f4 d c c cis4 d e2 \once \set suggestAccidentals = ##t cis2 r4 g'4 c,4 d g2. e4 f4. d8 e4 f g2 c,2 a cis2. d4 e2 a,2 g b2. c4 d2 g,1 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 A -- ni -- me_af -- fa -- ti -- ca -- te_e si -- ti bon -- de ve -- ni -- te_al l’on -- de vi -- ue quà v'in -- ui -- ta la ve -- ra vi -- ta_o -- ue la lun -- ga se -- te spe -- gner po -- tre -- te spe -- gner po -- tre -- te. } textAlt = \lyricmode { %\set stanza = "1. " %text vers 1 A -- ni -- me_af -- fa -- ti -- ca -- te_e si -- ti bon -- _ de ve -- ni -- te_al l’on -- de vi -- ue quà v'in -- ui -- ta la ve -- ra vi -- ta_o -- ue la lun -- ga se -- te spe -- gner po -- tre -- te spe -- gner po -- tre -- te. } %% 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" \textAlt \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 80 2) } } }