\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Ond'è che l'auree crine" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Lodi et canzonette, 1608" composer = "" poet = "" } %% Macros genStuff = { \key c \major \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim %music \partial 2 \once \override TextScript #'padding = #2 r4^\markup { \italic { \bold { Aria V. per le Lodi Della VI. Maniera } } (pp. 96–97) } c' d4. e8 f d e4 e8 g f e f4. a8 e1 \break d2 \fullBarDbl \partial 2 r8 d e f g f e d c4. d8 d2 c \break r8 b c d e d c b a4. b8 b2 a } melodyAlt = \relative c' { \genStuff \clef treble \CSec %\set Staff.instrumentName = "Canto secondo" %music r4 a' a4. c8 c b c4 c8 c b a b4 d cis4[ d2 cis4] d2 r8 b b b b b c8 a g4 c2 b4 c2 r8 g g g g gis8 a f e4 a2 gis4 a2 } melodyBass = \relative c { \genStuff \clef bass \Basso %music r4 f d4. c8 f g8 c,4 c8 c e f g4 d a'1 d,2 r8 g e d e d c d e4 f g2 c,2 r8 e c b c b a b c4 d e2 a,2 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 On -- d’è che l’au -- reo cri -- ne del più lu -- cen -- te gi -- ro sì ri -- splen -- den -- t’e vag’ hog -- gi ri -- mi -- ro, sì ri -- splen -- den -- t’e vag’ hog -- gi ri -- mi -- ro. } %% 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" \textSoprano \context Voice = bas { \autoBeamOff \melodyBass \fullBarFinal } >> \layout { indent = 1\cm \context { \Lyrics \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } }