% -*- coding: utf-8 -*- \header { % title = "Vergin Maria" tagline = "" } \include "/home/eyolf/.templates/bookLayout.ly" genStuff = { \key g\dorian \time 3/2 \layoutTweaks \revert Staff.TimeSignature #'style } %% Melodies melodySoprano = \relative c' { \genStuff \clef treble d'2 d bes a g a bes1 c2 d d f g, a bes c c1 bes1. e,2 f g a a c d4 c bes a g2 a a c bes a g f e1 d f'2 ees d c bes a1 g1. } melodyAlt = \relative c' { \genStuff \clef "G_8" g'2 d d d d d d1 f2 f f f g f d g f1 f1. c2 a c f f f d1 g,2 c c r1 r r r r2 f c f ees g d1 d1. } melodyTenor = \relative c' { \genStuff \clef "G_8" d2 d g, a bes a g1 c2 bes bes bes ees d d c c1 d1. g,2 f c c' c f, f1 c'2 a a f g a bes g a1 d, bes'2 g f c' ees a,1 b1. } melodyBass = \relative c { \genStuff \clef bass g'2 fis g d g, d' g1 f2 bes bes d, ees f g ees f1 bes,1. c2 d e f f a, bes1 c2 f f r1 r r r r2 bes, c d ees c d1 g,1. } %% Lyrics textSoprano = \lyricmode { \lyricTweak Ver -- gin Ma -- ri -- a tu gui -- da_e vi -- a de’ pec -- ca -- tor se’ pi -- a. ma -- re_o -- ce -- a -- no del Ciel __ _ _ _ so -- vra -- no tu se’ dol -- ce te -- so -- ro. Tu se’ dol -- ce te -- so -- ro. } textAlt = \lyricmode { \lyricTweak Ver -- gin Ma -- ri -- a tu gui -- da_e vi -- a de’ pec -- ca -- tor se’ pi -- a. ma -- re_o -- ce -- a -- no del Ciel so -- vra -- no tu se’ dol -- ce te -- so -- ro. } textTenor = \lyricmode { \lyricTweak Ver -- gin Ma -- ri -- a tu gui -- da_e vi -- a de’ pec -- ca -- tor se’ pi -- a. ma -- re_o -- ce -- a -- no del Ciel so -- vra -- no tu se’ dol -- ce te -- so -- ro. tu se’ dol -- ce te -- so -- ro. } textBass = \lyricmode { \lyricTweak Ver -- gin Ma -- ri -- a tu gui -- da_e vi -- a de’ pec -- ca -- tor se’ pi -- a. ma -- re_o -- ce -- a -- no del Ciel so -- vra -- no tu se’ dol -- ce te -- so -- 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 = 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 { % \Lyrics % \consists "Bar_engraver" % \consists "Separating_line_group_engraver" % \override barline #'transparent = ##t % \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) %} %\context { % \StaffGroup % \override BarLine #'thickness = #10.0 %} } } %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) } } }