\version "2.12.2" \include "english.ly" \include "gregorian.ly" \header { title = "The Divine Liturgy" subtitle = "Great Ektenia" composer = "Znamenny Chant" } global = { \key g \major \override Staff.TimeSignature #'stencil = ##f \override Staff.BarLine #'stencil = ##f } move = { \bar "" \break } soprano = \relative c'' { \global % Music follows here. b4(a b c d2 c b a) g1 \divisioMaxima } } alto = \relative c' { \global % Music follows here. g'1.(~g1 d2) g1 \divisioMaxima } tenor = \relative c' { \global % Music follows here. b4(a b c d2 c b a) g1 \divisioMaxima } bass = \relative c { \global % Music follows here. g'1.(~g1 d2) g1 \divisioMaxima } verse = \lyricmode { % Lyrics follow here. A -- men. } move = { \bar "" \break } \score { \new ChoirStaff << \new Staff \with { midiInstrument = "string ensemble 1" instrumentName = \markup \center-column { "S" "A" } } << \new Voice = "soprano" { \voiceOne \soprano } \new Voice = "alto" { \voiceTwo \alto } >> \new Lyrics \lyricsto "soprano" \verse \new Staff \with { midiInstrument = "string ensemble 1" instrumentName = \markup \center-column { "T" "B" } } << \clef bass \new Voice = "tenor" { \voiceOne \tenor } \new Voice = "bass" { \voiceTwo \bass } >> >> \layout { ragged-last=##f } \midi { \context { \Score tempoWholesPerMinute = #(ly:make-moment 120 4) } } }