% -*- coding: utf-8 -*- \include "/home/eyolf/.templates/bookLayout.ly" \header { % title = "Accio" tagline = "" } %% Macros %\include "printLayout.ly" genStuff = { \key e\minor \time 3/2 \layoutTweaks \override Staff.TimeSignature #'style = #'single-digit } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble r2 e1. dis2 dis e1 fis2 g d g2. fis4 e1 \break dis fis g4( fis) e( dis) e( fis) g1 r2 e1. fis4( e) d( cis) \pageBreak d( e) fis2 fis1 g a g fis2 d c1. b R1.\break g'2 g fis e1. e d2.( e4) fis2 g1 fis e dis1.\break e1 fis2 g g g \break fis1. fis e1 e2 e e e1 dis e1. } melodyAlt = \relative c' { \genStuff \clef "G_8" b1. b1 b2 b2. cis4 d2 d4( c) b2 b1 c4 g a2 b1 r2 R1. r2 r e2 | e2.( d4) c( b) c( b) a1 r2 d1 | d1. d d2. c4 b2 c1. d1 b b2 d c b1 R1. c2 c b a a d4 c b2.( cis4) d1 a b1. b2.( cis4) d2 d d d cis1. d b1 b2 c c c b1. b } melodyTenor = \relative c' { \genStuff \clef "G_8" g1. fis1 fis2 g1 a2 b4( a) g2 g g2. e4 e2 fis1 b2 b2.( a4) g( fis) g( a) b1 r2 r a2 | a2.( g4) fis( e) fis( g) a1 | r2 b1 | a b2 a2. a4 g1 fis | g1. | R1. R c2 c b | a a g | fis fis a4 a | g2.( a4) b1 c fis,1. | g1 a2 b b b1 bes b1. g1 g2 g g g fis1. e } melodyBass = \relative c { \genStuff \clef bass e1. b1 b2 e1 d2 g2. fis4 e2. d4 c1 b1. | r2 e1 | e2.( d4) c( b) c( b) a1 | r2 d1 | d2.( c4) b( a) | b( a) g2 g' | fis4( e) d2 g | d d g | a1. | g g2 g fis e e d c1. c d1 d2 e1 d c b1. e1 d2 g fis e fis1. b, e1 d2 c b a b1. e } %% Lyrics textSoprano = \lyricmode { Ac -- ciò de’ tuoi di -- vo -- ti_il sa -- cro co -- ro in tuon so -- no -- ro in tuon so -- no -- ro i plau -- si tuo -- i di -- stin -- gua Pur -- ga_og -- ni lin -- gua da’ __ pro -- fa -- ni_in -- gan -- ni di -- vo di -- vo Gio -- van -- ni di -- vo di -- vo Gio -- van -- ni } textAlt = \lyricmode { Ac -- ciò de’ tuoi __ _ di -- vo -- ti il sa -- cro co -- ro in tuon so -- no -- ro i plau -- si tuo -- i di -- stin -- gua Pur -- ga_og -- ni lin -- gua Pur -- ga_og -- ni lin -- gua da’ pro -- fa -- ni_in -- gan -- ni di -- vo di -- vo Gio -- van -- ni di -- vo di -- vo Gio -- van -- ni } textTenor = \lyricmode { Ac -- ciò de’ tuoi di -- vo -- ti il sa -- cro co -- ro in tuon so -- no -- ro in tuon so -- no -- ro i plau -- si tuo -- i di -- stin -- gua Pur -- ga_og -- ni lin -- gua_og -- ni lin -- gua da’ pro -- fa -- ni_in -- gan -- ni di -- vo di -- vo Gio -- van -- ni di -- vo di -- vo Gio -- van -- ni } textBass = \lyricmode { Ac -- ciò de’ tuoi di -- vo -- ti_il sa -- cro co -- ro in tuon so -- no -- ro in tuon so -- no -- ro i plau -- _ si tuo -- i di stin -- gua Pur -- ga_og -- ni lin -- gua_og -- ni lin -- gua da’ pro -- fa -- ni_in -- gan -- ni di -- vo di -- vo Gio -- van -- ni di -- vo di -- vo Gio -- van -- 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 { \context { \Staff \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) \override BarLine #'thickness = #10.0 } \context { \StaffGroup \override BarLine #'thickness = #10.0 } %\context { %\Lyrics %\consists "Bar_engraver" %\consists "Separating_line_group_engraver" %\override barline #'transparent = ##t %\override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) %} } } %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) } } }