\version "2.10.0" \header { title = "47. Wassail Song" piece = "" composer = "Traditional Yorkshire New Year's carol." tagline = "" } #(set-default-paper-size "legal" 'landscape) stanzaOne = \lyricmode { \set stanza = "1." _ Here we come a -- was -- sail -- ing, A -- mong the leaves so green; Here we come a -- wan -- der -- ing, So fair to be seen: Love and joy come to you And to you your was -- sail, too, And God bless you and send you A hap -- py New year, And God send you a hap -- py New Year. } stanzaTwo = \lyricmode { \set stanza = "2." God bless the mas -- ter of this house, Like -- wise the mis -- tress too; And all the lit -- tle child -- ren That "round the" ta -- ble go. } stanzaThree = \lyricmode { \set stanza = "3." _ Good mas -- ter and good mis -- tress, While you're sitting by the fire, Pray think of us poor child -- ren "Who are" wand'ring in the mire. } sopranoMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key d \major \autoBeamOff \numericTimeSignature \time 6/8 \override Score.BarNumber #'break-visibility = #'#(#t #t #t) \relative c' { \partial 8 } } altoMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key d \major \autoBeamOff \numericTimeSignature \time 6/8 \relative f' { \partial 8 } } tenorMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key d \major \autoBeamOff \numericTimeSignature \time 6/8 \relative c' { \partial 8 d8 | d4 e8 fis4 e8 | d4 e8 fis4 e8 | d4 a'16( a16) a4 a8 | a2. \break b4 b8 a4 fis8 | a4 a8 g4 fis16( fis) | e4( d8) e4 fis8 | d2. \bar "||" \break \time 4/4 \partial 2 fis4 g4 | a2 d4 b4 | a2 fis4 g4 | a a d b | \break a2 fis4 g4 | a2 b4 fis4 | g4( e) d4 cis4 | d4.( e8) fis4 d | \break g2 fis4 g | a2 b4 fis4 | g( e) d cis | d2( d4.) \bar "|." } } bassMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef bass \numericTimeSignature \key d \major \autoBeamOff \time 6/8 \relative c { \partial 8 } } \score { << \new Voice = "one" { \sopranoMusic} \new Voice = "two" { \altoMusic} << >> \new Voice = "three" { \tenorMusic} \new Lyrics \lyricsto "three" \stanzaOne \new Lyrics \lyricsto "three" \stanzaTwo \new Lyrics \lyricsto "three" \stanzaThree \new Voice = "four" { \bassMusic} >> \layout { indent = 0 \cm firstpagenumber = no } \paper { between-system-space = 1.5\cm between-system-padding = #1 ragged-bottom=##f ragged-last-bottom=##f } }