% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Oue lieta ne vai " subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Lodi et canzonette, 1608" composer = "" poet = "" } genStuff = { \key c \major \time 3/2 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 %music g''2^\markup { \italic { \bold { Aria VII. per le Lodi Della X. Maniera } } (pp. 114–15) } g fis2 g1 e2 d1. d1 r2 | d d cis2 d1 b2 a1. ~ a1 r2 | d2 c b a1 g2 \fullBarDbl e'2 f d e1 g2 d1 c2 b c a b1 d2 a1 g2 } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music e'2 e d e1 c2 b1. b1 r2 b b a b1 g2 fis1. ~ fis1 r2 g e e fis1 g2 c a b c1 c2 b1 c2 g e fis2 g1 g2 fis1 g2 } melodyBass = \relative c { \genStuff \clef bass \Basso %music c'2 c b c1 a2 g1. g1 r2 g2 g fis g1 e2 d1. ~ d1 r2 b'2 c g d1 g2 c2 d g,2 c1 e,2 g1 c,2 g'2 a d,2 g1 b,2 d1 g,2 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 O -- ue lie -- ta ne va -- i cin -- ta di tan -- ti rai __ che sem -- bri_un So -- le o -- ue_il mio Spo -- so vo -- le, o -- ue_il mio Spo -- so vo -- le. } %% 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" \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) } } }