% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Chi non ama te, Maria " subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria XX. per le Lodi Della XV. Maniera." composer = "Lodi et canzonette, 1608, pp. 222f" poet = "" } genStuff = { \key d\dorian \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 %music b'2.^\markup { \italic { \bold { Aria XII. per le Lodi Della XV. Maniera } } (pp. 222–23) } a4 b2. g4 a4. b8 c4 b c2 c c2. b4 \break a2. g4 fis4. g8 a4 gis4 a2 a \bar "||" c2. d4 e2. c4 d4. e8 f4 e f2 f f2. e4 d2. c4 b4. c8 d4 cis4 d2 d } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music g'2. d4 g2. g4 f2. d4 e2 e a2. g4 f2. e4 d2. b4 cis2 cis a'2. b4 c2. a4 bes2. g4 a2 a d2. c4 bes2. a4 g2. e4 fis2 fis } melodyBass = \relative c { \genStuff \clef bass \Basso %music g'2. fis4 g2. e4 f2. g4 c,2 c a2. e'4 f2. c4 d2. e4 a,2 a f'2. d4 c2. f4 d2. c4 f2 f d2. a'4 bes2. f4 g2. a4 d,2 d } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Chi non a -- ma te __ _ _ Ma -- ri -- a e’l tuo fi -- glio,_è sen -- _ _ za co -- re Chi non và do -- ue_il __ _ _ tuo_a -- mo -- re le con -- du -- ce,_e fuor __ _ _ di vi -- a. } textAlto = \lyricmode { %\set stanza = "1. " %text vers 1 Chi non a -- ma te Ma -- ri -- a e’l tuo fi -- glio,_è sen -- za co -- re Chi non và do -- ue_il tuo_a -- mo -- re le con -- du -- ce,_e fuor di vi -- a. } %% 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 { \Staff tempoWholesPerMinute = #(ly:make-moment 70 2) } } }