\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Andar vid' il gran Rè" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria III. per le Lodi Della V. Maniera" composer = "Lodi et canzonette, 1608, pp. 52--53" poet = "" } %% Macros genStuff = { \key c \major \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \set Staff.midiInstrument = "oboe" \once \override TextScript #'padding = #2 c'2^\markup { \italic { \bold { Aria III. per le Lodi Della V. Maniera } } (pp. 52–53) } \noBreak b4. b8 b4 c \noBreak d2. e4 \noBreak e d c2 \noBreak b \fullBarDbl e4 e8 e \noBreak e2 e \break f4. g8 e4 d \partial 1. d2 c %\partial 2 r4 d8 d d2 d4 e f2. a4 e2. c4 b1 a } melodyAlt = \relative c' { \genStuff \clef treble \CSec \set Staff.midiInstrument = "clarinet" %music a'2 gis4. gis8 gis4 a b2. c4 c b a2 gis c4 c8 c c2 c c4. c8 g4 a b2 c r4 b8 b b2 b4 cis4 d2. d4 c2. a4 gis4 a2 gis4 a1 } melodyBass = \relative c { \genStuff \clef bass \Basso \set Staff.midiInstrument = "bassoon" %music a'2 e4. e8 e4 a g2. c4 c g a2 e c'4 c8 c c2 c,2 f4. g8 e4 f g2 c,2 r4 g'8 g g2 g4 e d2 d a'2 a,2 e'1 a,1 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 An -- dar vid’ il gran Rè del v -- ni -- uer -- so car -- co di do -- gli’à pas -- si tar -- d’e len -- ti, che per al -- ta pie -- tà pian -- gean le gen -- ti. } %% 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" \textSoprano >> \layout { indent = 1\cm \context { \Lyrics \consists "Bar_engraver" \consists "Separating_line_group_engraver" \override BarLine #'transparent = ##t } } } %\score { %\context StaffGroup = choirStaff << %\context Voice = sop { \partial 2 \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 { } }