\include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Anima mia che pensi" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Aria II. per le Lodi Della III. Maniera." composer = "Lodi et canzonette, 1608, p. 38--39" poet = "" } %% Macros genStuff = { \key f \major \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \set Staff.midiInstrument = "oboe" \once \override TextScript #'padding = #2 r4^\markup { \italic { \bold { Aria II. per le Lodi Della III. Maniera } } (pp. 38–39) } a' a a bes4 g a2 a4 c c b c g g2 g4 bes a4. g8 a4 g g2 f1 r4 e'4 e e f d e2 e4 g g fis4 g d d2 d4 f4 e4. d8 e4 d d2 c1 } melodyAlt = \relative c' { \genStuff \clef treble \CSec \set Staff.midiInstrument = "clarinet" r4 f f f f e f2 f4 a g f e d e2 e4 g f4. d8 e4 f2 e4 f1 r4 c'4 c c c b4 c2 c4 e d c b a b2 b4 d c4. a8 b4 c2 b4 c1 } melodyBass = \relative c { \genStuff \clef bass \Basso \set Staff.midiInstrument = "bassoon" r4 f f f bes,4 c f2 f4 f e d c \once \set suggestAccidentals = ##t b4 c2 c4 g a4. bes8 c4 bes c2 f1 r4 c c c f g c,2 c4 c'4 b4 a g \once \set suggestAccidentals = ##t fis g2 g4 d e4. f8 g4 f g2 c,1 } textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 C._A -- ni -- ma mia che pen -- si? per -- che do -- glio -- sa sta -- i? sem -- pre tra -- hen -- do gua -- i. A._Vor -- rei ri -- po -- so_e pa -- ce, vor -- rei di -- let -- to_e gio -- ia, e tro -- vo_af -- fan -- ni_e no -- ia. } %% 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 { \Score tempoWholesPerMinute = #(ly:make-moment 100 2) } } }