% Version 1.0
% Last edit: April 2, 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 = "I Know That My Redeemer Lives"
composer = "John Hatton"
poet = "Samuel Medley"
meter = "L.M."
arranger = ""
piece = "Duke Street"

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

melody = \relative c' {
  \world
  d2 fs4 g |
  a2 b4( cs) |
  d2 cs4( b) |
  a1 | % end line 1
  a2 a4 a |
  b2 a |
  g fs |
  e1 | % end line 2
  fs2 fs4 e |
  d( fs) a( d) |
  b( a) g( fs) |
  e1 | % end line 3
  a2 b4 cs |
  d2. g,4 |
  fs2 e |
  d1 \bar "|."
}


alto = \relative c' {
  \world
  d2 d4 cs |
  d2 d4( g) |
  fs2 e4( d) |
  cs1 | % end line 1
  d2 d4 d |
  d2 d4( a) |
  b( cs) d2 |
  cs1 | % end line 2
  d2 d4 cs |
  a( d) d2 |
  d cs4( d) |
  cs1 | % end line 3
  d2 d4 e |
  fs4.( e8 d4) e |
  d2 cs |
  d1 
}

tenor = \relative c {
  \world
  fs2 a4 a |
  a2 g |
  a a4( gs) |
  a1 | % end line 1
  fs2 fs4 a |
  g2 a4( fs) |
  g2 a |
  a1 | % end line 2
  a2 a4 g |
  fs( a) d( a) |
  g( a) a2 |
  a1 | % end line 3
  a2 g4 g |
  fs4.( g8 a4) b |
  a2 g |
  fs1 \bar "|."
}

bass = \relative c {
  \world
  d2 d4 e |
  fs2 g4( e) |
  d2 e |
  a,1 | % end line 1
  d2 d4 fs |
  g2 fs |
  e d |
  a1 | % end line 2
  d2 d4 a |
  d2 fs |
  g4( fs) e( d) |
  a1 | % end line 3
  fs'2 g4 e |
  d4.( e8 fs4) g |
  a2 a, |
  d1
}

verseOne = \lyricmode {
  \set stanza = "1. "
  I know that my Re -- deem -- er lives;
  What joy the blest as -- sur -- ance gives!
  He lives, he lives who once was dead;
  He lives, my ev -- er -- last -- ing Head!
}

verseTwo = \lyricmode {
  \set stanza = "2. "
  He lives to bless me with his love;
  He lives to plead for me a -- bove;
  He lives, my hun -- gry soul to feed;
  He lives, to help in time of need.
}

verseThree = \lyricmode {
  \set stanza = "3. "
  He lives, and grants me dai -- ly breath;
  He lives, and I shall con -- quer death;
  He lives, my man -- sion to pre -- pare;
  He lives, to bring me safe -- ly there.
}

verseFour = \lyricmode {
  \set stanza = "4. "
  He lives, all glo -- ry to his name;
  He lives, my Sav -- ior, still the same;
  What joy the blest as -- sur -- ance gives;
  I know that my Re -- deem -- er lives!
}

\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 Lyrics = three \lyricsto sopranos \verseThree
      \context Lyrics = four \lyricsto sopranos \verseFour
    >>
    \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)
    }
  }
}

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



\paper {
  ragged-bottom = ##t
  top-margin = 0.25\in
  bottom-margin = 0.25\in
}

%{
   _Worship III_, #445
   Change log:
   New 4-2-06
%}


