\version "2.2.6"
\header {
  title =       "Lullaby for God's Children"
  composer =    "Joshua P. Bowman"
  poet =        "Sister's Lullaby"
  meter =       "7 7 7 9"
  copyright =   "Copyright (c) 2000 Joshua P. Bowman"
}

global = \notes {
  \key d \major
  \time 4/4
  \partial 4
  \skip 4
  \skip 1*7
  \skip 2.
  \bar "|."
}

sopMusic = \notes { 
  \relative c' { 
  fis8 e | fis4 a2 fis8 e | a2. g8 fis | g4 b2 g8 fis | g2.
  fis8 e | fis4 a2 fis8 e | d2. d8 cis | b cis d e d4 cis | d2. 
  }
}

altoMusic = \notes { 
  \relative c' { 
  d8 cis | d4 d2 d8 d | fis2. d8 d | d4 d2 b8 b | cis4( d e)
  cis8 cis | d4 fis2 cis8 cis | d4( cis b) b8 b | b a b cis a4 a | a2. 
  }
}

tenorMusic = \notes {
  \relative c' { 
  g8 g | fis4 fis( g) a8 b | cis2( c4) c8 c | b4 g( e) e8 e | a4( b cis) 
  a8 a | a4 d2 a8 a | b4( a fis) fis8 fis | g g g g e4 g | g2( fis4)
  }
}

bassMusic = \notes {
  \relative c { 
  a8 a | d4 d2 d8 d | d2. d8 d | g,4 g2 g8 g | a2. 
  a8 a | d4 d( cis) cis8 cis | b2. b8 b | g g g g a4 a | d2. 
  }
}

verseOne = \lyrics {
  Pre -- cious child -- ren, do you know?
  Christ in heav -- en longs to show
  that He loves you, that you're free,
  that He's made a place for you to be.
}

verseTwo = \lyrics {
  Sleep in peace, child, sleep in joy;
  sleep with an -- gels watch -- ing o'er.
  Dream of heav -- en; dream of light.
  Know that God will hold you through the night.
}

\score { \notes {
	 \override Score.BarNumber 
	    #'break-visibility = #all-invisible
	 \context ChoirStaff = congregation <<
	     \context Staff = women <<
	       \clef "treble"
               \context Voice = sopranos { \voiceOne 
                  \simultaneous { \global \sopMusic } }
                  \lyricsto sopranos \new Lyrics { \verseOne }
	       \context Voice = altos { \voiceTwo \altoMusic }
                  \lyricsto altos \new Lyrics { \verseTwo }
	     >>
	     \context Staff = men <<
	       \clef "bass"
	       \context Voice = tenors { \voiceOne 
                  \simultaneous { \global \tenorMusic } }
	       \context Voice = basses { \voiceTwo \bassMusic }
	     >>
         >>
         }
  \paper {
    indent = 10 \mm
    linewidth = 140 \mm
    pagenumber = no
    \context {
	% a little smaller so lyrics can be closer to the staff. 
	\StaffContext
	minimumVerticalExtent = #'(-3 . 3) 
    }
  }
}
