% Version: 1.2
% Last edit: March 23, 2006
% The music and words produced by this source code are believed
% to be in the public domain in the United States. The source
% code itself is covered by the Creative Commons Attribution-
% NonCommercial license, 
% http://creativecommons.org/licenses/by-nc/2.5/
% Attribution: Geoff Horton

\version "2.8.0"
\include "english.ly"

#(set-default-paper-size "letter")
#(set-global-staff-size 20)

title = "Gracious Spirit, Holy Ghost"
composer = "Friedrich Filitz"
poet = "Christopher Wordsworth, alt."
piece = "Capetown"
meter = "77.75"
arranger = ""

world = {
  \key d \major
  \time 4/4
}

melody = \relative c'' {
  \world
  a4 fs b a |
  g g fs2 |
  d'4 cs d a |
  g fs e2 |
  a4 d cs b |
  a gs a2 |
  fs4 fs e e |
  d1 \bar "|."
}


alto = \relative c' {
  \world
  \autoBeamOff
  d4 d d d |
  d cs d2 |
  fs4 e d d |
  b8[ cs] d4 d( cs) |
  d fs e fs |
  e4. d8 d4( cs) |
  d d d cs |
  d1
}

tenor = \relative c {
  \world
  fs4 a g a |
  b a a2 |
  a4 a fs fs |
  g a a2 |
  a4 a a d |
  cs b a2 |
  a4 b b a |
  fs1
}

bass = \relative c {
  \world
  d4 d g fs |
  e a, d2 |
  d4 a b fs' |
  e d a2 |
  fs'4 d a' d, |
  e e a,2 |
  d4 b g a |
  d1
}

verseOne = \lyricmode {
  \set stanza = "1. "
  Gra -- cious Spi -- rit, Ho -- ly Ghost,
  Taught by thee we cov -- et most,
  Of thy gifts at Pen -- te -- cost,
  Ho -- ly, heav'n -- ly love.
}

verseTwo = \lyricmode {
  \set stanza = "2. "
  Love is kind, and suf -- fers long,
  Love is meek, and thinks no wrong,
  Love than death it -- self more strong;
  There -- fore, give us love.
}

\markup {
  \column {
    \fill-line { \large \bold \title } % title
    \fill-line { \caps \piece               % piece
	         \caps \composer      % composer
	       }
    \fill-line { \meter          % meter
	         \arranger           % arranger
	       }
  }
}

\score {
  \context ChoirStaff <<
    \context Staff = upper <<
      \context Voice =
         sopranos { \voiceOne << \melody >> }
      \context Voice =
         altos { \voiceTwo << \alto >> }
      \context Lyrics = one \lyricsto sopranos \verseOne
      \context Lyrics = two \lyricsto sopranos \verseTwo
    >>
    \context Staff = lower <<
      \clef bass
      \context Voice =
        tenors { \voiceOne << \tenor >> }
      \context Voice =
        basses { \voiceTwo << \bass >> }
    >>
>>
  \layout {
    \context {
      \Score
      % **** Turns off bar numbering
      \remove "Bar_number_engraver"
    }
    \context {
      \Lyrics
      % **** Prevents lyrics from running too close together
      \override LyricSpace #'minimum-distance = #0.6
      % **** Makes the text of lyrics a little smaller
      \override LyricText #'font-size = #-1
      % **** Moves lines of lyrics closer together
      \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1)
    }
  }
}

% **** The verses are rather far apart on the output. If they're too
% **** far apart for your taste, add more \hspaces before and after.
\markup { 
  \normalsize {
    \fill-line {
      \hspace #3.0
      \line {
	"3. "
	\column {
	  "Prophecy will fade away,"
	  "Melting in the light of day;"
	  "Love will ever with us stay;"
	  "  Therefore, give us love."
	}
      }
      \hspace #3.0
      \line {
	"4. "
	\column {
	  "Faith and hope and love we see,"
	  "Joining hand in hand, agree,"
	  "But the greatest of the three,"
	  " And the best, is love."
	}
      }
      \hspace #3.0
    }
  }
}

\markup {
  \column {
    \fill-line { " " \small \caps \poet  } % poet
  }
}


%{
  Per the _Hymnal 1940_, 379. The alterations consist of omitted verses, given below:
[After the first verse]
Faith, that mountains could remove,
Tongues of earth or heaven above,
Knowledge--all things--empty prove,
  Without heavenly love.

Though I as a martyr bleed,
Give my goods the poor to feed,
All is vain, if love I need;
  Therefore, give me love.

[After verse three]
Faith will vanish into sight;
Hope be emptied in delight;
Love in heaven will shine more bright;
  Therefore, give us love.

[Last verse]
From the overshadowing
Of thy gold and silver wing,
Shed on us, who to thee sing,
Holy heavenly love.

  Change log:
  3-23-06 Brought up to 2.8 with new formatting
%}


