% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Vieni, vieni a brugiarmi" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria XVII. per le Lodi Della XX. Maniera" subsubtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "" composer = "Longo, 1608, pp. 310-311" poet = "" tagline = ##f } %% Macros genStuff = { \key g\dorian \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c'' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 d2^\markup { \italic { \bold { Aria XVII. per le Lodi Della XX. Maniera } } (pp. 310–11) } d r4 c c bes4 c2. d4 a1 g2 \fullBarDbl \break r2 d'8 e f2 f8 ees8 d2 c r8 d d c d4. f8 bes,2. bes4 bes2. c4 c2 bes r4 f'4 d2. g4 e2 ~ e4 d4 %d2^\markup {"orig.: e2 d"} c %orig har e2 d r4 a c2. g4 bes4 a a1 g2 } melodyAlt = \relative c'' { \genStuff \clef treble \CSec bes2 bes r2 a4 a g g2 g4 fis4 g2 fis4 g2 r2 r4 bes8 c d4 d8 c c4 b4 c2 r2 r2 r8 g g f g4. bes8 ees,4. f8 g4 g a8 bes4 a8 bes2 r2 r4 d b2. e4 cis4 d d cis d fis,4 a2. e4 g2. e4 fis4 g2 fis4 g2 } melodyBass = \relative c' { \genStuff \clef bass \Basso bes2 bes,2 r4 f'4 f g c,2 b d1 g2 r4 g8 a bes2 ~ bes4 bes8 aes8 g2 c,2 r2 r8 g'8 g f g4. bes8 ees,2. ees4 ees ees f2 bes,2 r2 r4 bes'4 g2. c4 a4 bes a2 d,4 d f2. c4 ees2. c4 d1 g2 } %% Lyrics textSoprano = \lyricmode { \lyricTweak Vie -- ni, vie -- ni_a bru -- giar -- mi_il co -- re vi -- ua fiam -- ma d’A -- mo -- re e scio -- gli_in ac -- qua con pie -- to -- so_af -- fet -- to il giac -- cio che_hò nel pet -- to il giac -- cio che_hò nel pet -- to. } textAlt = \lyricmode { \lyricTweak Vie -- ni, vie -- ni_a bru -- giar -- mi_il co -- _ _ re vi -- ua fiam -- ma d’A -- mo -- _ re e scio -- gli_in ac -- qua con pie -- to -- so_af -- fet -- _ _ to il giac -- cio che_hò nel pet -- _ to il giac -- cio che_hò nel pet -- _ _ to. } textTenor = \lyricmode { \lyricTweak } textBass = \lyricmode { \lyricTweak Vie -- ni, vie -- ni_a bru -- giar -- mi_il co -- re vi -- ua fiam -- ma d’A -- mo -- re e scio -- gli_in ac -- qua con pie -- to -- so_af -- fet -- to il giac -- cio che_hò nel pet -- to il giac -- cio che_hò nel pet -- to. } %% score % for layout: \score { << \context StaffGroup = choirStaff << \context Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics \lyricsto "sop" \textSoprano \context Voice = alt { \autoBeamOff \melodyAlt } \new Lyrics \lyricsto "alt" \textAlt \context Voice = bas { \autoBeamOff \melodyBass } >> \new Lyrics \lyricsto "bas" \textBass >> \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) } } }