\version "2.13.19" \header { title = "Boar's Head Carol" composer = "Traditional English Carol" tagline = "" } #(set-default-paper-size "legal" 'landscape) stanzaOne = \lyricmode { \set stanza = "1." The boar's head in hand bear I, Be decked with bays and rose -- ma -- ry; And I pray you, my mas -- ters, _ be mer -- ry, Quot es -- tis in con -- vi -- vi -- o: Ca -- put a -- pri de -- fe -- ro, Red -- dens lau -- des Do -- mi -- no. } stanzaTwo = \lyricmode { \set stanza = "2." The boar's head, "as I" un -- der -- stand, "Is the" rar -- est dish in all this land, Which _ thus be _ -- decked with a gay gar -- land, Let us ser -- vi -- re can -- ti -- co: Ca -- put a -- pri de -- fe -- ro, Red -- dens lau -- des Do -- mi -- no. } stanzaThree = \lyricmode { \set stanza = "3." The Boar's Head that we bring here be tok "neth a" Prince with out a peer, is _ born this _ day to _ buy us dear: no -- el no -- el no -- el No -- el! Ca -- put a -- pri de -- fe -- ro, Red -- dens lau -- des Do -- mi -- no. } stanzaFour = \lyricmode { \set stanza = "4." Our ste -- ward hath pro -- vi -- ded this, In ho -- nour of the King of bliss, Which on this day to be ser -- ved is, In Re -- gi -- nen -- se a -- tri -- o: } sopranoMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key c \major \autoBeamOff \numericTimeSignature \time 2/2 \relative c'' { \partial 8 g8 | c2 c4. c8 | b4 c g4. e8 | f4 f a4. f8 | g4. g8 c4 g8 g8 | c4 c8 c8 c4 c8 c8 | b4 c4 g4 e4 | f4 f4 a4. f8 | g4 g4 c2 | e4. e8 d4 d4 | e4 e4 b2 | a4 a4 c4. c8 | b4 b4 c2 } } altoMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key c \major \autoBeamOff \numericTimeSignature \time 2/2 \relative f' { \partial 8 g8 | c2 c4. c8 | b4 c g4. e8 | f4 f a4. f8 | g4. g8 c4 g8 g8 | c4 c8 c8 c4 c8 c8 | b4 c4 g4 e4 | f4 f4 a4. f8 | g4 g4 c2 | g4. g8 g4 g4 | g4 g4 d2 | c4 c4 f4. c8 | d4 d4 e2 } } tenorMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key c \major \autoBeamOff \time 2/2 \relative c'' { \numericTimeSignature \partial 8 g8 | c2 c4. c8 | b4 c g4. e8 | f4 f a4. f8 | g4. g8 c4 g8 g8 | c4 c8 c8 c4 c8 c8 | b4 c4 g4 e4 | f4 f4 a4. f8 | g4 g4 c2 | \bar "|:" c4. c8 b4 b4 | c4 c4 g2 | f4 f4 a4. f8 | g4 g4 c2 \bar ":|" } } bassMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef bass \key c \major \autoBeamOff \numericTimeSignature \time 2/2 \relative f { \partial 8 g8 | c,2 c4. c8 | d4 e g4. e8 | f4 f a4. f8 | g4. g8 c,4 g'8 g8 | c,4 c8 c8 c4 c8 c8 | d4 e4 g4 e4 | f4 f4 a4. f8 | g4 g4 c,2 | c4. c8 g'4 g4 | c,4 e4 g2 | f4 f4 f4. f8 | g4 g,4 c2 } } \score { << \new Voice = "one" { \sopranoMusic \set midiInstrument = #"choir aahs" } \new Lyrics \lyricsto "one" \stanzaOne \new Voice = "two" { \altoMusic \set midiInstrument = #"french horn" } \new Lyrics \lyricsto "two" \stanzaTwo << >> \new Voice = "three" { \tenorMusic \set midiInstrument = #"bassoon" } \new Lyrics \lyricsto "three" \stanzaThree \new Lyrics \lyricsto "three" \stanzaFour \new Voice = "four" { \bassMusic \set midiInstrument = #"tuba" } >> \midi{ \context { \Voice \consists "Staff_performer" } \context { \Score tempoWholesPerMinute = #(ly:make-moment 52 2) } } \layout { indent = 0 \cm firstpagenumber = no papersize = legal \context { \Lyrics \override LyricText #'font-size = #-1 } } }