% -*- coding: utf-8 -*- \header { % title = "Felici noi" tagline = "" } \include "/home/eyolf/.templates/bookLayout.ly" genStuff = { \key f\major \time 6/4 \layoutTweaks \revert Staff.TimeSignature #'style } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble r2. r4 r4 a' a2 a4 a2 g4 a a1 bes4 c2 c4 bes2 a4 g g1 g4 g2 g4 g2 a4 bes2. c a2 g4 g2. f ~ f2 g4 g2 g4 g2 a4 bes2. c a2 g4 g2. f1. } melodyAlt = \relative c' { \genStuff \clef "G_8" r2. r4 r4 f f2 f4 f2 e4 f f1 f4 f2 c4 d2 f4 e e1 e4 e2 e4 e2 f4 g2. g f2 f4 f2. f2. ~ f2 e4 e2 e4 e2 f4 g2. g f2 f4 f2. f1. } melodyTenor = \relative c' { \genStuff \clef "G_8" r2. r4 r4 c c2 c4 c2 c4 c c1 bes4 a2 a4 bes2 c4 c c1 c4 c2 c4 c2 c4 ees2. ees d2 d4 c2. c2. ~ c2 c4 c2 c4 c2 c4 ees2. ees d2 d4 c2. c1. } melodyBass = \relative c { \genStuff \clef bass r2. r4 r4 f f2 f4 f2 c4 f f1 g4 a2 a4 g2 f4 c c1 c4 c2 c4 c2 f4 ees2. c d2 bes4 c2. f2. ~ f2 c4 c2 c4 c2 f4 ees2. c d2 bes4 c2. f1. } %% Lyrics textSoprano = \lyricmode { \lyricTweak Fe -- li -- ci noi ch’il mon -- do e’ suoi fal -- si di -- let -- ti fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni. } textAlt = \lyricmode { \lyricTweak Fe -- li -- ci noi ch’il mon -- do e’ suoi fal -- si di -- let -- ti fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni. } textTenor = \lyricmode { \lyricTweak Fe -- li -- ci noi ch’il mon -- do e’ suoi fal -- si di -- let -- ti fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni. } textBass = \lyricmode { \lyricTweak Fe -- li -- ci noi ch’il mon -- do e’ suoi fal -- si di -- let -- ti fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni fug -- giam da gio -- va -- net -- ti ne’ verd’ an -- ni. } %% 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 = ten { \autoBeamOff \melodyTenor } \new Lyrics \lyricsto "ten" \textTenor \context Voice = bas { \autoBeamOff \melodyBass } \new Lyrics \lyricsto "bas" \textBass >> \layout { } } %for midi \score { \context ChoirStaff << \context Staff \melodySoprano \context Staff \melodyAlt \context Staff \melodyTenor \context Staff \melodyBass >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 100 2) } } }