#(ly:set-option 'old-relative) \header { filename = "ave_verum_corpus.ly" title = "Ave Verum Corpus" subtitle = "Motet" opus = "" source = "" composer = "Mozart" % needed by mutopia: mutopiainstrument = "Choir" mutopiacomposer = "Mozart" date = "Unknown" style = "Classical" copyright = "Public Domain" maintainer = "jeff covey " tagline = "\\\\This music is part of the Mutopia project, http://sca.uwaterloo.ca/Mutopia/\\\\It has been typeset and placed in the public domain by jeff covey.\\\\Unrestricted modification and redistribution is permitted and encouraged - copy this music and share it!" } \version "2.4.0" global = { \key d \major \time 2/2 } sopranoMelody = \relative c'' { a2 d4( fis,) a( gis) g2 g4( b) a( g) g( fis) fis2 e2. e4 fis fis g g g2( fis4) fis e1 } altoMelody = \relative c' { fis2 fis e e e4( g) fis( e) e( d) d2 cis2. cis4 d d e e e2( d4) d cis1 } tenorMelody = \relative c' { a2 a b b a a a a a2. a4 a a a a a2. a4 a1 } bassMelody = \relative c { d2 d d d cis cis d d a2. a4 d d cis cis d2. d4 a1 } sopranoLyrics = \lyricmode { A -- ve, a -- ve ve -- rum cor -- pus, na -- tum de Ma -- ri -- a vir -- gi -- ne, } altoLyrics = \lyricmode { A -- ve, a -- ve ve -- rum cor -- pus, na -- tum de Ma -- ri -- a vir -- gi -- ne, } tenorLyrics = \lyricmode { A -- ve, a -- ve ve -- rum cor -- pus, na -- tum de Ma -- ri -- a vir -- gi -- ne, } bassLyrics = \lyricmode { A -- ve, a -- ve ve -- rum cor -- pus, na -- tum de Ma -- ri -- a vir -- gi -- ne, } sopranoTotal = \simultaneous { \oldaddlyrics \context Staff = "soprano" { \set Staff.midiInstrument = "voice oohs" \clef "violin" \unset Staff.melismaBusyProperties \context Voice=soprano<< \global \sopranoMelody >> } \context Lyrics = "soprano" \sopranoLyrics } altoTotal = \simultaneous { \oldaddlyrics \context Staff = "alto" { \set Staff.midiInstrument = "voice oohs" \clef "violin" \unset Staff.melismaBusyProperties \context Voice=alto<< \global \altoMelody >> } \context Lyrics = "alto" \altoLyrics } tenorTotal = \simultaneous { \oldaddlyrics \context Staff = "tenor" { \set Staff.midiInstrument = "voice oohs" \clef "violin_8" \unset Staff.melismaBusyProperties \context Voice=tenor<< \global \tenorMelody >> } \context Lyrics = "tenor" \tenorLyrics } bassTotal = \simultaneous { \oldaddlyrics \context Staff = "bass" { \set Staff.midiInstrument = "voice oohs" \clef "bass" \unset Staff.melismaBusyProperties \context Voice=bass<< \global \bassMelody >> } \context Lyrics = "bass" \bassLyrics } \score { \context ChoirStaff = "choir" << \sopranoTotal \altoTotal \tenorTotal \bassTotal >> \layout { } \midi { \tempo 4=60 } } % EOF