\version "2.16.2"

#(set! paper-alist (cons '("Hymn" . (cons (* 6.25 in) (* 9.25 in))) paper-alist))

\paper {
  #(set-paper-size "Hymn")
}

\header {
  title = "Men, Rest Your Souls"
subtitle = "ANNA 8.7.8.7"
composer = "Music and Lyrics by Joshua Nichols"
copyright = "©2012, 2013, Joshua Nichols. All Rights Reserved."
}


global = {
  \time 4/4
  \key e \major

}

refrain = \relative c'' {
  \global
  \partial 4*1
  b,4
  e e e fis8 gis | %1
  a4 fis gis b | %2
  cis b8 a gis4 e | %3
  fis2. gis4 | %4
  
}

stanza = \relative c'' {
  \global
  b b b b | %5
  e4. cis8 b4 gis | %6
  e fis8 gis a4 gis | %7
  fis2 e4 s4 \bar "|." %8
}

alto = \relative c' {
  \global
  b4
  b cis dis cis | %1
  b dis e e | %2
  e e cis cis | %3
  e2 dis8 cis b4 | %4
  e dis e8 fis gis4 | %5
  fis2 e4 e | %6
  dis8 cis cis b cis4 cis8 dis | %7
  e4 dis e  s4 \bar "|."
  
}

tenor = \relative c' {
  \global
  a4
  gis a b a | %1
  b b b b | %2
  a b a ais | %3
  b2. a4 | %4
  gis a gis b | %5
  cis dis b b | %6
  gis a8 gis a4 fis | %7
  fis8 gis a4 gis s4 _\markup {\italic "sdg"} \bar "|."
  
}

bass = \relative c {
  \global
  a4
  e' fis gis fis |
  dis b e gis |
  a gis8 fis e4 fis |
  b,2. dis4 |
  e fis gis e |
  a2 gis4 e8 dis |
  cis4 dis8 e fis4 ais,
  b2 e4 s4 \bar "|."
  
}

refrainWords = \lyricmode {
 Men rest your souls on _ God's right hand, 
 who so -- v'rign -- ly has or -- dained, that
 
}

verseOne = \lyricmode {
  \set stanza = "1."
  Man, Who's help -- less will is lost,
 be saved by re -- sist -- less grace.
}

verseTwo = \lyricmode {
  \set stanza = "2."
  Slaves, who served both Man and things, be part of a roy -- al bondage.
  
}

verseThree = \lyricmode {
  \set stanza = "3."
  marr -- iage, shamed by fruit for -- bidd'n, re -- turn to _ Love un -- sha -- ken.
  
}

verseFour = \lyricmode {
 \set stanza = "4."
 true love, rich in e -- v'ry way ough, per -- sist to no true end -- ing.
}

verseFive = \lyricmode {
  \set stanza = "5."
Christ, the sit -- ting Priest on High, would die for the sins of any?
}

verseSix = \lyricmode {
  \set stanza = "6."
 fi -- nite men, through blood stained brows, have in -- fin -- ite fa -- vor ever -- more. 
}

\score {
  \new ChoirStaff <<
 <<
      \new Voice = "soprano" { \voiceOne \refrain \verse }
      \new Voice = "alto" { \voiceTwo \alto }
    >>
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "stanza" \refrainWords
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "stanza" \verseOne
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "stanza" \verseTwo
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "stanza" \verseThree
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "stanza" \verseFive
    \new Lyrics \with {
      \override VerticalAxisGroup #'staff-affinity = #CENTER
    } \lyricsto "stanza" \verseSix
    \new Staff \with {
      midiInstrument = "choir aahs"
 
    } <<
      \clef bass
      \new Voice = "tenor" { \voiceOne \tenor }
      \new Voice = "bass" { \voiceTwo \bass }
    >>
  >>
  \layout {
     indent = 0.0\cm
    \context {
      \Score
        \remove "Bar_number_engraver"
    }
}
  \midi { }
}
