% -*- coding: utf-8 -*- \header { % title = "" tagline = "" } %% Macros \include "/home/eyolf/.templates/bookLayout.ly" %\include "printLayout.ly" genStuff = { \key c\major \time 4/4 \layoutTweaks } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble a'4 a a g f e e f e e e2 e a4 a8 a g4 f f f e f f e f1 \fullBarRepDbl f4.f8 e4 f f g g fis g2. g4 g f e2 fis1 } melodyAlt = \relative c' { \genStuff \clef treble d4 e f g a bes a a gis a a gis a2 a4 a8 a bes4 c d c bes a g2 a1 c4. bes8 g4 a g bes a2 bes bes4 g a1 a } melodyTenor = \relative c' { \genStuff \clef "G_8" d4 cis d cis d d cis d d c b2 c c4 f8 f d4 c bes f g a c2 a1 c4. d8 e4 c d d d2 d d4 d cis d2 cis4 d1 } melodyBass = \relative c { \genStuff \clef bass d4 a d e f g a d, e a e2 a, f'4 f g8 g a a bes4 a g f c2 f1 a4. bes8 c4 a bes g d2 g g4 bes a2 a, d1 } %% Lyrics textSoprano = \lyricmode { \lyricTweak Glo -- ri -- o -- sa Ver -- gi -- nel -- la, pu -- ro gi -- glio, e mad -- re fi -- glia,_e spo -- sa del tuo fi -- _ glio. o Ma -- rìa, dol -- ce te -- so -- ro, io t’a -- do -- _ _ ro. } textAlt = \lyricmode { \lyricTweak Glo -- ri -- o -- sa Ver -- gi -- nel -- la, pu -- ro gi -- _ glio, e mad -- re fi -- glia,_e spo -- sa del tuo fi -- glio. o Ma -- rìa, dol -- ce te -- so -- ro, io t’a -- do -- ro. } textTenor = \lyricmode { \lyricTweak Glo -- ri -- o -- sa Ver -- gi -- nel -- la, pu -- ro gi -- glio, e mad -- re fi -- glia,_e spo -- sa del tuo fi -- glio. o Ma -- rìa, dol -- ce te -- so -- ro, io t’a -- do -- _ _ ro. } textBass = \lyricmode { \lyricTweak Glo -- ri -- o -- sa Ver -- gi -- nel -- la, pu -- ro gi -- glio, e mad -- re fi -- glia, e spo -- sa del tuo fi -- glio. o Ma -- rìa, dol -- ce te -- so -- ro, io t’a -- do -- _ ro. } %% score \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 { \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 \melodyTenor \context Staff \melodyBass >> \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 100 2) } } }