% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/sheetLayout.ly" \header { title = "Ond'i che l'auree crine" subtitle = "Tarquinio Longo: Lodi e Canzonette (1608)" subsubtitle = "Lodi et canzonette, 1608" composer = "" poet = "" } %% Macros genStuff = { \key c\major \time 4/4 \layoutTweaks %\set Score.measureLength = #(ly:make-moment 4 2) } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble \CPrim \once \override TextScript #'padding = #2 r2 c'4 d4. e8 f d e2 e r8 g f e f4. a8 e2 d2 \fullBarDbl \partial 2 r8 d e f g f e d c4. d8 d2 c r8 b c d e d c b a4. b8 b2 a } melodyAlt = \relative c' { \genStuff \clef treble \CSec %music r2 a'4 a4. c8 c b c2 c8 c b a b4 d cis4 d2 cis4 d2 r8 b b b \break b b c8 a g4 c2 b4 c2 r8 g g g g gis8 a f e4 a2 gis4 a2 } melodyBass = \relative c { \genStuff \clef bass \Basso %music r2 f4 d4. c8 f g c,2 c8 c e f g4 d a'1 d,2 r8 g e d e d c d e4 f g2 c,2 r8 e c b c b a b c4 d e2 a,2 } %% Lyrics textSoprano = \lyricmode { %\set stanza = "1. " %text vers 1 On -- d'i che l'au -- reo cri -- ne del più lu -- cen -- te gi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro } textAlt = \lyricmode { \lyricTweak On -- d'i che l'au -- reo cri -- ne del più lu -- cen -- te gi -- _ _ ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro } textTenor = \lyricmode { \lyricTweak On -- d'i che l'au -- reo cri -- ne del più lu -- cen -- te gi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro } textBass = \lyricmode { \lyricTweak On -- d'i che l'au -- reo cri -- ne del più lu -- cen -- te gi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro si ri -- splen -- den -- ti rag -- g'hog -- gi ri -- mi -- ro } %% score % for layout: \score { \context StaffGroup = choirStaff << \context Voice = sop { \autoBeamOff \melodySoprano \fullBarFinal } \new Lyrics \lyricsto "sop" \textSoprano \context Voice = alt { \autoBeamOff \melodyAlt } \new Lyrics \lyricsto "alt" \textAlt \context Voice = bas { \autoBeamOff \melodyBass } %\new Lyrics \lyricsto "bas" \textBass >> \layout { indent = 1\cm } } %for midi \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyBass >> \midi { \context { \Staff tempoWholesPerMinute = #(ly:make-moment 130 2) } } }