\version "2.10.0" \header { title = "Alle psallite" piece = "13th century French conductus" composer = "" tagline = "" } #(set-default-paper-size "legal" 'landscape) stanzaOne = \lyricmode { \set stanza = "1." A! Al -- le psal -- li -- te cum lu -- y -- a, Al -- le, Al -- le con -- cre -- pand -- do psal -- lit -- te cum lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le cor -- de vo -- to De -- o to -- to psal -- li -- te cum lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a! } stanzaTwo = \lyricmode { \set stanza = "2." Al! al, Al -- le, Al -- le Psal -- il -- te cum lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le con -- cre -- pand -- do psal -- lit -- te cum lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le cor -- de vo -- to De -- o to -- to psal -- li -- te cum lu -- y -- a, Al -- le -- lu -- y -- a! } stanzaThree = \lyricmode { \set stanza = "3." Al! Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a, Al -- le -- lu -- y -- a! } tenorMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key c \major \autoBeamOff \numericTimeSignature \time 6/8 \override Score.BarNumber #'break-visibility = #'#(#t #t #t) \relative c'' { d2.\fermata | \bar "||" d4. c4. | d4 c8 b4 c8 | d4. c16[( b] a4) | a4. r4. | a4.( g4.) | a4. r4. | d4. c4( d8) | e4 e8 d4 b8 | c4 a8 b4 c8 | d4. c16[( b] a4) | a4. r4. | b4. b | a g | a r | d c4( d8) | e4 e8 d4 e8 | f4 d8 e4 c8 | d4 c8 b4 c8 | d4. c16[( b] a4) | a4. r4. | b4. d4( b8) | c4( d8 b4 c8 | a4 g8 b4) g8 | a4. r | d c8( d4) | e4.( d16[ c b8]) cis8 | d4. r4. \bar "|." } } counterMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key c \major \autoBeamOff \numericTimeSignature \time 6/8 \relative f' { a2.\fermata | a4. r | a( g) | a r | d c | d4 c8 b4 c8 | d4. c16[( b] a4) | a4. r | b b | a g | a r | d c4( d8) | e4 e8 d4 b8 | c4 a8 b4 c8 | d4. c16[( b] a4) | a4. r | b d4( b8) | c4( d8 b4 c8 | a4 g8 b4) g8 | a4. r | d4. c4( d8) | e4 e8 d4 e8 | f4 d8 e8[ d] c | d4 c8 b4 c8 | d4. c16[( b] a4) | a4. a | b4( c8) b8[ a] gis | a4. r4. } } altoMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef treble \key c \major \autoBeamOff \numericTimeSignature \time 6/8 \relative c' { d2.\fermata | d4. f4( e8) | d4. e | d r | d f4( e8) | d4. e4. | d r | d f | e( g | f) e | d r | d f | e( g | f) e | d r | d f | e( g | f4 g8 e4 f8 | d4 c8) e4. | d r | d f | e( g | f4 g8 e4 f8 | d4 c8) e4. | d r | d f | e e | d r } } bassMusic = { \sacredHarpHeads \set shapeNoteStyles = ##(fa #f la fa #f la mi) \clef bass \numericTimeSignature \key c \major \autoBeamOff \time 6/8 \relative c { d2.\fermata | d4. f4( e8) | d4. e | d r | d f4( e8) | d4. e4. | d r | d f | e( g | f) e | d r | d f | e( g | f) e | d r | d f | e( g | f4 g8 e4 f8 | d4 c8) e4. | d r | d f | e( g | f4 g8 e4 f8 | d4 c8) e4. | d r | d f | e e | d r } } \score { << \new Voice = "one" { \tenorMusic} \new Lyrics \lyricsto "one" \stanzaOne \new Voice = "two" { \counterMusic} \new Lyrics \lyricsto "two" \stanzaTwo << >> \new Voice = "three" { \altoMusic} \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 } }