% Version: 1.1
% 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 = "Ye holy angels bright"
composer = "John Darwall"
poet = "Richard Baxter and John Hampden Gurney"
piece = "Darwall"
meter = "66.66.44.44"
arranger = ""

world = {
  \key c \major
  \time 4/4
  \partial 4*1
}

melody = \relative c' {
  \world
  c4 |
  e c g' e |
  c'2. b4 |
  a g f e |
  d2. d4 | 
  e c a' g |
  fs d d' c |
  b2 a |
  g2. g4 |
  a2 b |
  c2. c,4 |
  d e f g |
  a b c d |
  c2 b |
  c2. \bar "|."
}


alto = \relative c' {
  \world
  c4 |
  c c d e |
  e2. e4 |
  f c b c |
  b2. b4 |
  c4 c e d |
  d d d e |
  d2 d2 |
  d2. e4 |
  f2 f |
  e2. c4 |
  b c c c |
  c f e d |
  e2 d4( f) |
  e2.
}

tenor = \relative c {
  \world
  e4 |
  g e g g |
  a2. b4 |
  c g g g |
  g2. g4 |
  g e c' b |
  a fs g g |
  g2 fs4( c') |
  b2. c4 |
  c2 d |
  c2. g4 |
  g g f e |
  f f g a |
  g2 g |
  g2.
}

bass = \relative c {
  \world
  c4 |
  c c b c |
  a'2. g4 |
  f e d c |
  g2. g4 |
  c4 c a b8 c |
  d4 c b c |
  d2 d |
  g,2. c4 |
  f( e) d2 |
  a'2. e4 |
  d c a c |
  f d e f |
  g2 g, |
  c2.
}

verseOne = \lyricmode {
  \set stanza = "1. "
  Ye ho -- ly an -- gels bright,
  Who wait at God's right hand,
  Or through the realms of light
  Fly at your Lord's com -- mand,
  As -- sist our song.
  For else the theme
  Too high doth seem
  For mor -- tal tongue.
}

verseTwo = \lyricmode {
  \set stanza = "2. "
  Ye bless -- ed souls at rest,
  Who ran this earth -- ly race
  And now, from sin re -- leased,
  Be -- hold the Sa -- viour's face,
  God's prais -- es sound.
  As in his sight
  With sweet de -- light
  Ye do a -- bound.
}

\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)
    }
  }
}


\markup { 
  \normalsize {
    \fill-line {
      \hspace #3.0
      \line {
	"3. "
	\column {
	  "Ye saints, who toil below,"
	  "  Adore your heav'nly King,"
	  "And onward as ye go"
	  "  Some joyful anthem sing;"
	  "    Take what he give"
	  "      And praise him still"
	  "      Through good or ill,"
	  "    Who ever lives!"
	}
      }
      \hspace #3.0
      \line {
	"4. "
	\column {
	  "My soul, bear thou thy part,"
	  "  Triumph in God above:"
	  "And with a well-tuned heart"
	  "  Sing thou the songs of love!"
	  "    Let all thy days"
	  "      Til life shall end,"
	  "      Whate'er he send,"
	  "    Be filled with praise."
	}
      }
      \hspace #3.0
    }
  }
}

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


%{
  Per the _Hymnal 1940 _
  Changelog:
  3-23-06 Moved to 2.8.0 and new formatting.
%}


