% These are the Psalms for Easter Vigil, set by Dan Jinguji in around 1970-1980. % They have been sung for many years at St. James Cathedral in Seattle, and % other places where refugees from the St. James Choir have ended up. % Set in LilyPond by Carl M. Bolstad in April, 2004. % Psalm #2: \version "2.2.0" \header { title = "Psalm Number 2" composer = "Dan Jinguji" piece = "Antiphone" tagline = "" } % The Antiphone: \include "gregorian-init.ly" \score { % \addlyrics \context VaticanaVoice = "antiphone" { % had to add a name to this context, so I could put lyrics to it. \override Score.BarNumber #'transparent = ##t \set Staff.fontSize = #'+3 \set Staff.minimumVerticalExtent = #'(-3 . 6) \notes << { \key d \minor d d d f e4. \divisioMinima d4 d f g e d4. d \divisioMaxima % had to replace the double-notes with dotted ones. } \lyricsto "antiphone" \new Lyrics \lyrics % This is where I added the \lyricsto keyword and "antiphone" parts. { \override LyricText #'font-series = #'bold \override LyricText #'font-size = #+3 % had to change this from "font-relative-size" We wait on the Lord; He is our light in dark -- ness. } >> % had to add these simultenaity braces myself, and move the lyrics section into the notes section. } \paper { } } %{ let's just do the antiphone for now, OK? % Verse 1: \score { \addlyrics \context VaticanaVoice { \override Score.BarNumber #'transparent = ##t \set Staff.fontSize = #'+2 \set Staff.minimumVerticalExtent = #'(-3 . 6) \notes { \key d \minor d^"Cantor" a a a a a a a e f e \[ d( d) \] \divisioMinima f^"Women" f g g f g a \[ a( a) \] \divisioMaxima d^"Men" a a a e e f e \[ d( d) \] \divisioMinima f g g g g g g \breathe f g a \[ a( a) \] \divisioMaxima } } \context Lyrics \lyrics { \override LyricText #'font-series = #'bold \override LyricText #'font-relative-size = #+2 O Lord, it is you who are my por -- tion and cup, it is you yourself who are my prize. I keep the Lord ev -- er in my sight; since he is at my right hand, I shall stand firm. } \header { piece = "Verse 1:" } \paper { } } % Verse 2: \score { \addlyrics \context VaticanaVoice { \override Score.BarNumber #'transparent = ##t \set Staff.fontSize = #'+2 \set Staff.minimumVerticalExtent = #'(-3 . 6) \notes { \key d \minor d^"Cantor" a a a a e f e \[ d( d) \] \divisioMinima f^"Women" f f g g f g a \[ a( a) \] \divisioMaxima d^"Men" a a a a a a e f e \[ d( d) \] \divisioMinima f g g g f g a \[ a( a) \] \divisioMaxima } } \context Lyrics \lyrics { \override LyricText #'font-series = #'bold \override LyricText #'font-relative-size = #+2 And so my heart rejoices, my soul is glad; ev -- en my body shall rest in safe -- ty. For you will not leave my soul a -- mong the dead, nor let your belov -- ed know de -- cay. } \header { piece = "Verse 2:" } \paper { } } % Verse 3: \score { \addlyrics \context VaticanaVoice { \override Score.BarNumber #'transparent = ##t \set Staff.fontSize = #'+2 \set Staff.minimumVerticalExtent = #'(-3 . 6) \notes { \key d \minor d^"Cantor" d a a e f e \[ d( d) \] \divisioMinima f^"Women" g g g f g a \[ a( a) \] \bar "" \divisioMaxima \break a^"Men" e f \[ d( d) \] \divisioMinima f g f g a \[ a( a) \] \divisioMaxima } } \context Lyrics \lyrics { \override LyricText #'font-series = #'bold \override LyricText #'font-relative-size = #+2 You will show me the path of life, the fullness of Joy in your pre -- sence, at your right hand hap -- pi -- ness for ev -- er. } \header { piece = "Verse 3:" } \paper { } } %}