\version "2.13.45" \header { title = "Better Days Coming (L.M.)" piece = "Anonymous" composer = "American Vocalist, 1849" } #(set-default-paper-size "letter" 'landscape) stanzaOne = \lyricmode { \set stanza = "1." The glo -- rious time is roll -- ing on, When sin -- ners will come flock -- ing home, O there are bet -- ter days com -- ing! Will you go a -- long with me? Yes, there are bet -- ter days com -- ing, And we'll sound the Ju -- bi -- lee. } stanzaTwo = \lyricmode { \set stanza = "2." I long to hear the joy -- ful sound, the dead's a -- live, the lost is found. O there's re -- form -- a -- tion com -- ing, Will you go a -- long with me? Yes, there's re -- form -- a -- tion com -- ing, And we'll sound the Ju -- bi -- lee. } stanzaThree = \lyricmode { \set stanza = "3." O come dear sin -- ners will you go, And see what love from Christ doth flow? O there's re -- form -- a -- tion com -- ing, Will you go a -- long with me? Yes, there's re -- form -- a -- tion com -- ing, And we'll sound the Ju -- bi -- lee. } sopranoMusic = { \sacredHarpHeads \clef treble \key c \major \autoBeamOff \time 4/4 \relative c'' { \partial 4 r4 | r1 | r1 | r1 | r2 r4 c8. c16 | c8 c8 c8 c8 c8 c8 g8 b8 | c8 g8 g8 c8 e4 c8 c8 | c8 c8 c8 c8 c8 c8 g8 b8 c8. g16 c8. g16 g4 } } altoMusic = { \sacredHarpHeads \clef treble \key c \major \autoBeamOff \time 4/4 \relative f' { \partial 4 r4 | r1 | r1 | r1 | r2 r4 c8. d16 | e8 e8 e8 e8 e8 g8 g8 g8 | g8 g8 g8 g8 g8[ e8] c8 d8 | e8 e8 e8 e8 e8 g8 g8 g8 | g8. g16 f8. f16 e4 } } tenorMusic = { \sacredHarpHeads \clef treble \key c \major \autoBeamOff \time 4/4 \relative c'' { \partial 4 c4 | e4 e4 e8.[ d16] c4 | d4 e8[ c8] a4 c4 | e4 e4 e8[ d8] c8[ a8] | c4 c8[ a8] g4 \bar "|:" c8. a16 | g8 g8 g8 g8 a8 c8 c8 d8 | e8 e8 d8 e8 c4 c8 a8 | g8 g8 g8 g8 a8 c8 c8 d8 | e8. e16 d8. d16 c4 \bar ":|" } } bassMusic = { \sacredHarpHeads \clef bass \key c \major \autoBeamOff \time 4/4 \relative c { \partial 4 r4 | r1 | r1 | r1 | r2 r4 c8. c16 | c8 c8 c8 c8 e8 c8 e8 g8 | c8 c8 g8 g8 c,4 c8 c8 | c8 c8 c8 c8 e8 c8 e8 g8 | c8. c16 g8. g16 c,4 } } \score { << \new Voice = "one" { \sopranoMusic } \new Lyrics = "verseOne" \new Voice = "two" { \altoMusic } \new Lyrics = "verseTwo" \new Voice = "three" { \tenorMusic } \new Lyrics = "verseThree" \new Voice = "four" { \bassMusic } \context Lyrics = "verseOne" { \lyricsto "three" { \stanzaOne } } \context Lyrics = "verseTwo" { \lyricsto "three" { \stanzaTwo } } \context Lyrics = "verseThree" { \lyricsto "three" { \stanzaThree } } >> \layout { indent = 0 \cm firstpagenumber = no papersize = a4 } \midi{ \context { \Voice \consists "Staff_performer" } \context { \Score tempoWholesPerMinute = #(ly:make-moment 52 2) } } }