% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Stava a pie della croce" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria XI. per le Lodi Della XIV Maniera." composer = "from Tarquinio Longo: Lodi et canzonette, 1608, p. 156f" poet = "" } genStuff = { \key g \dorian \time 4/4 \layoutTweaks \set Staff.midiInstrument = "rock organ" } %% Melodies melodySoprano = \relative c'' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 g2.^\markup { \italic { \bold { Aria XI. per le Lodi Della XIV. Maniera } } (pp. 156–57) } a4 \noBreak bes2 c4 d \noBreak bes c8 bes c2 \noBreak d r8 a a g \break a2. bes4 \noBreak a1 \noBreak g2 \fullBarDbl r4 a4 \noBreak a2. f4 \break bes2. g4 \noBreak c2. d4 \noBreak c1 \noBreak bes \noBreak r2 f'2. e8 d cis4 d \break e1 d r2 d2. c8 bes a4 g a1 g } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music bes'2. a4 g2 a4 fis4 g1 a2 r2 r8 fis fis e fis2. g4 fis2 g r2 r4 f4 f2 ~ f4 d4 g2. e4 a2. g4 a2 bes1 r2 a2. g8 f e4 a cis4 d2 cis4 d1 bes2. a8 g fis2. d4 fis g2 fis4 g1 } melodyBass = \relative c { \genStuff \clef bass \Basso %music g'2. fis4 g2 f4 d ees1 d r8 d d c8 d2. c4 d2 g,2 r2 r4 d'4 d2 ~ d4 bes4 ees2. c4 f2. e4 f2 bes,1 d2. c8 bes a2. fis4 a1 d g2. f8 e d2. b4 d1 g,1 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 Sta -- ua_à piè del -- la Cro -- _ _ _ ce on -- de pen -- de_a'l fig -- lio -- lo la Ma -- dre_in pian -- to,_e_in duo -- _ _ lo stu -- pi -- da_e sen -- za vo -- ce stu -- pi -- da,_e sen -- za vo -- ce. } textAlt = \lyricmode { %\set stanza = "1. " %text vers 1 Sta -- ua_à piè del -- la cro -- ce on -- de pen -- de_a'l fig -- lio -- lo la Ma -- dre_in pian -- to,_e_in duo -- _ _ lo stu -- pi -- da_e sen -- za vo -- _ _ ce stu -- pi -- da_e sen -- za vo -- _ _ ce } textBass = \lyricmode { %\set stanza = "1. " %text vers 1 Sta -- ua_à piè del -- la Cro -- ce on -- de pen -- de_a'l fig -- lio -- lo la Ma -- dre_in pian -- to,_e_in duo -- _ _ lo stu -- pi -- da_e sen -- za vo -- ce stu -- pi -- da_e sen -- za vo -- ce. } %% score % for layout: \score { << \context StaffGroup = choirStaff << \new Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics = "sopText" {s1} \new Voice = alt { \autoBeamOff \melodyAlt \fullBarFinal } \new Lyrics = "basText" {s1} \new Voice = bas { \autoBeamOff \melodyBass \fullBarFinal } >> \context Lyrics = sopText \lyricsto "sop" \textSoprano \context Lyrics = basText \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 70 2) } } }