% Version 1.2 % 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 18) title = "We Plow the Fields, and Scatter" composer = "Johann A. P. Schultz" poet = "Matthias Claudius" translator = "trans. Jane M. Campbell" piece = "Claudius" meter = "76.76.D., with Refrain" arranger = "" \paper { raggedbottom = ##t top-margin = 0.25\in bottom-margin = 0.25\in head-separation = 0.0\in } world = { \key a \major \time 4/4 \partial 4*1 } melody = \relative c' { \world e4 | a a e e | cs'2 a4 e | d cs b a | e'2. a4 | gs fs e cs' | b( a) gs e | fs cs' b ds, | e2. e4 | b' b cs cs | d2 b4 b | e e d cs | b2. e,4 | a a e e | fs2 cs4 cs | d4. b8 e4 gs | a1 | a4 a a a | b2 b4 b | cs4. e8 d4 cs | b2. b4 | cs4 b cs4. b8 | a4 gs a4. e8 | fs4( b) a( gs) | a2. \bar "|." } alto = \relative c' { \world e4 | a a e e | cs'2 a4 e | d cs b a | e'2. e4 | e ds e e | e( ds) e e | e e ds b | b2. e4 | e e e e | e2 e4 e | e e e e | e2. e4 | a a e e | fs2 cs4 cs | d4. b8 e4 d | cs1 | cs4 cs cs cs | e2 e4 gs | a4. a8 gs4 a | gs2. e4 | e e e4. e8 | cs4 es fs4. e8 | d4( fs) e2 | e2. } tenor = \relative c { \world e4 | a a e e | cs'2 a4 e' | d cs b a | e'2. a,4 | b b b a | gs( fs) e b' | cs fs, fs a | gs2. e4 | gs gs a a | gs2 gs4 gs | a a gs a | gs2. e4 | a a e e | fs2 cs4 cs | d4. b8 e4 b' | a1 | e4 e a cs | gs2 gs4 e' | e4. e8 e4 e | e2. b4 | a gs a4. gs8 | fs4 cs' cs4. a8 | a4( d) cs( b) | cs2. } bass = \relative c { \world e4 | a a e e | cs'2 a4 e | d cs b a | e'2. cs4 | b a gs a | b2 cs4 gs | a a b b | e2. e4 | d d cs cs | b2 e4 d | cs cs b a | e'2. e4 | a a e e | fs2 cs4 cs | d4. b8 e4 e | a,1 | a4 e' cs a | e'2 e4 e | a4. cs8 b4 a | e2. gs4 | a e a4. e8 | fs4 cs fs4. cs8 | d4( b) e2 | a,2. } verseOne = \lyricmode { \set stanza = "1. " We plow the fields, and scat -- ter The good seed on the land, But it is fed and wa -- tered By God's al -- might -- y hand; He sends the snow in win -- ter, The warmth to swell the grain, The breez -- es and the sun -- shine, And soft re -- fresh -- ing rain. All good gifts a -- round us Are sent from heav'n a -- bove; Then thank the Lord, O thank the Lord For all his love. } verseTwo = \lyricmode { \set stanza = "2. " He on -- ly is the Ma -- ker Of all things near and far; He paints the way -- side flow -- er, He lights the eve -- ning star; The winds and waves o -- bey him, By him the birds are fed; Much more to us, his chil -- dren, He gives our dai -- ly bread. } verseThree = \lyricmode { \set stanza = "3. " We thank thee, then, O Fa -- ther, For all things bright and good, The seed -- time and the har -- vest, Our life, our health, our food; No gifts have we to of -- fer For all they love im -- parts, But that which thou de -- sir -- est, Our hum -- ble thank -- ful hearts. } \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 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) } \context { \Staff \override NoteCollision #'merge-differently-dotted = ##t } \context { \Lyrics \override LyricText #'font-size = #-1 \override VerticalAxisGroup #'minimum-Y-extent = #'(-1 . 1) } } } \markup { \fill-line { " " \column { \small \caps \poet % poet \small \caps \translator % translator } } } %{ Per the _Hymnal 1940 _, 138 Change log: 3-23-06 Moved to 2.8, current formatting %}