\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Amor diuino " subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria XV. per le Lodi Della XVII. Maniera." composer = "Lodi et canzonette, 1608, pp. 254f" poet = "" } %% Macros genStuff = { \key a \minor \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 %music \partial 4 c'4^\markup { \italic { \bold { Aria XV. per le Lodi Della XVII. Maniera } } (pp. 254–55) } c4. c8 c4 d e2. d8 e f4 e d c d2 c \fullBarDbl \break \partial 2 r4 c d4. c8 d4 f f e f a8%^\markup {"orig: g8 g"}%men det er faktisk antydning %til en hjelpelinje der a g4 e8 e f4 d d cis4 d2 d4 f e4. d8 e4 d d2 c4 e8 e d4 b8 b c4 a a gis4 a2 a4 } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music g'4 g4. g8 a4 b c2. g8 g a4 c b c c b] c2 r4 a bes4. c8 bes4 a g2 a4 f'8 f8 e4 c8 c a4 bes bes a a2 a4 d c4. a8 b4 c c b c c8 c b4 g8 g e4 f f e e2 e4 } melodyBass = \relative c { \genStuff \clef bass \Basso %music c'4 c4. c8 a4 g c2. b8 c f,4 c g'4 e g2 c,2 r4 f bes4. a8 bes4 f c'2 f,4 f8 f c'4 c8 c d4 g, g a d,2 d4 d e4. f8 g4 f g2 c,4 c8 c g'4 g8 g a4 d,4 d e a2 a4 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 A -- mor di -- ui -- no_a -- mo -- re che vai cer -- can -- do_vn co -- re vie -- ni_à pi -- gliar -- ti_il mi -- _ o che di dar -- te -- lo_in pre -- da_hò gran de -- si -- o vie -- ni_a pi -- gliar -- ti_il mi -- o che di dar -- te -- lo_in pre -- da_hò gran de -- si -- o } textAlto = \lyricmode { %\set stanza = "1. " %text vers 1 A -- mor di -- ui -- no_a -- mo -- re che vai cer -- can -- do_vn co -- _ re vie -- ni_à pi -- gliar -- ti_il mi -- o che di dar -- te -- lo_in pre -- da_hò gran de -- si -- o vie -- ni_a pi -- gliar -- ti_il mi -- _ o che di dar -- te -- lo_in pre -- da_hò gran de -- si -- o } %% 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 2) } } }