\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Ahi perche stai si mesta " 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 c'2^\markup { \italic { \bold { Aria VI. per le Lodi Della VII. Maniera } } (pp. 106–107) } b4. b8 b4 c d4. d8 d4 c b2 b4 c c b c2 c \fullBarDbl \partial 2 r4 e e4. e8 f4 d e4. e8 e4. d8 cis2 cis4 d d cis d2 d2 r4 c4 c4. c8 c4 b4 c2 c4 a a gis4 a2 a } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music g'2 g4. g8 g4 g bes4. bes8 bes4 g g2 g4 a a g g2 g r4 c c4. c8 a4 b4 c4. c8 c4. a8 a2 a4 b b a a2 a2 r4 a4 a4. a8 a4 g g2 g4 f f e e2 e } melodyBass = \relative c { \genStuff \clef bass \Basso %music c'2 g4. g8 g4 c bes4. bes8 bes4 c g2 g4 f f g c,2 c r4 c'4 c4. c8 d4 g,4 c4. c8 c4 d a2 a4 g g a d,2 d2 r4 f4 f4. f8 f4 g c,2 c4 d d e a2 a } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Ahi per -- che stai si me -- staal -- ma do -- len -- te, al -- ma do -- len -- te pren -- di gio -- ia per -- che’l tuo pio Sig -- no -- re tuo pio Sig -- no -- re per te lan -- gui -- sce,_e mo -- re, lan -- gui -- sce,_e mo -- re. } %% 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 "sop" \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 } } } %for midi \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyBass >> \midi { \context { \Staff tempoWholesPerMinute = #(ly:make-moment 100 2) } } }