\version "2.12.2" #(set-default-paper-size "letter") #(set-global-staff-size 20) #(ly:set-option 'point-and-click #f) #(ly:set-option 'delete-intermediate-files #t) \paper { indent = #0 left-margin = 0.75\in line-width = 7.0\in top-margin = 0.25\in bottom-margin = 0.25\in % between-system-padding = 4\mm % between-system-space = 20\mm print-page-number = ##f print-first-page-number = ##f ragged-bottom = ##t } \header { subtitle = "Come, Ye Thankful People, Come" poet = "Henry Alford, 1844 (1810-1871)" composer = "George J. Elvey, 1858 (1816-1893)" meter= "ST. GEORGE'S WINDSOR 7.7.7.7.D." tagline = "Last update: 2009-04-03" } global = { \key f \major \time 4/4 } melody = { \global a'4. a'8 c''4 a'4 f'4 g'4 a'2 a'4. a'8 c''4 a'4 f'4 g'4 a'2 a'4. a'8 ais'4 ais'4 g'4. g'8 a'2 a'4 b'4 c''4 f'4 e'4 d'4 c'2 e'4. e'8 g'4 e'4 f'4 g'4 a'2 a'4. a'8 c''4 a'4 ais'4 c''4 d''2 d''4. d''8 ais'4 g'4 c''4. c''8 a'2 ais'4 d''4 c''4 f'4 a'4 g'4 f'1 \bar "|." } alto = \relative c' { \global c4. c8 c4 c | d e f2 | c4. c8 c4 c | d d cis2 | d4. d8 d4 d | c c bes2 | c4 d c d | c b c2 | c4. c8 c4 c | c bes a2 | c4. c8 f4 f | f ees d2 | d4 fis g d | c e f2 | f4 f f f | f e f2 | \bar "|." } tenor = \relative c { \global f4. f8 g4 a | a c c2 | f,4. f8 g4 f | a bes e,2 | f4. f8 g4 g | e e f2 | f4 f g a | g4. f8 e2 | g4. g8 e4 g | f4. e8 f2 | f4. f8 a4 c | bes4. a8 bes2 | a4 d d bes | g c c2 | bes4 bes c a | c4. bes8 a2 | \bar "|." } bass = \relative c { \global f4. f8 e4 f | d c f2 | f4. f8 e4 f | d bes a2 | d4. d8 g,4 g | c c f,2 | f'4 d e f | g g, c2 | c4. c8 c4 bes | a g f2 | f'4. f8 f4 ees | d c bes2 | fis'4 d g g | e c f2 | d4 bes a d | c c f2 | \bar "|." } verseOne = \lyricmode { \set stanza = "1. " Come, ye thank -- ful peo -- ple, come, raise the song of har -- vest home; All is safe -- ly gath -- ered in, ere the win -- ter storms be -- gin. God our Mak -- er doth pro -- vide for our wants to be sup -- plied; Come to God’s own tem -- ple, come; raise the song of har -- vest home. } verseTwo = \lyricmode { \set stanza = "2. " All the world is God’s own field, fruit un -- to His praise to yield; Wheat and tares to -- geth -- er sown, un -- to joy or sor -- row grown. First the blade and then the ear, then the full corn shall ap -- pear; Lord of har -- vest, grant that we whole -- some grain and pure may be. } verseThree = \lyricmode { \set stanza = "3. " For the Lord our God shall come, and shall take His har -- vest home; From His field shall in that day all of -- fens -- es purge a -- way, Giv -- ing an -- gels charge at last in the fire the tares to cast; But the fruit -- ful ears to store in His gar -- ner ev -- er -- more. } verseFour = \lyricmode { \set stanza = "4. " Ev -- en so, Lord, quick -- ly come, bring Thy fi -- nal har -- vest home; Gath -- er Thou Thy peo -- ple in, free from sor -- row, free from sin, There, for -- ev -- er pur -- i -- fied, in Thy gar -- ner to a -- bide; Come, with all Thine an -- gels come, raise the glo -- rious har -- vest home. } \score { << \set Score.tempoHideNote = ##t \tempo 4=115 \new ChoirStaff { << \chords { \set chordChanges = ##t f1 bes4 c'4:7 f2 f1 bes4 c'4:7 f2 d2:m g2:m c'2:7 f2 f4 g4 c'4 d4:m c'4 g4 c'2 c'1 f4 c'4:7 f2 f1 bes4 f4 bes2 g1:m c'2:7 f2 bes2 f2 f4 c'4:7 f2 } \new Staff { \clef treble << \new Voice = "voicea" { \voiceOne \melody } \new Voice = "voiceb" { \voiceTwo \alto } >> } \new Lyrics { \lyricsto "voicea" \verseOne } \new Lyrics { \lyricsto "voicea" \verseTwo } \new Lyrics { \lyricsto "voicea" \verseThree } \new Lyrics { \lyricsto "voicea" \verseFour } \new Staff { \clef bass \set Staff.printPartCombineTexts = ##f \partcombine \tenor \bass } >> } >> \layout { \context { \Score \remove "Bar_number_engraver" } \context { \Lyrics \override LyricText #'font-size = #-1 } \context { \Lyrics \override VerticalAxisGroup #'minimum-Y-extent = #'(-0 . 0) } } \midi { } }