I have a piece of Orthodox Chant that requires a repeat at the very
beginning of the piece. Attached is the piece with all of the music and the
repeat at the end of where the repeated music ends, but I also need the
repeat sign at the beginning of this piece. Any help would be appreciated.
Thanks.

-- 
In Christ,
Michael D
\version "2.12.2"
\include "english.ly"
\include "gregorian.ly"

\header {
  title = "Horologion ~ The Divine Liturgy"
  subtitle = "Blessed be the Name of the Lord"
  poet = "Kievan and Znamenny Chant"
}

global = {
  \key g \major
  \override Staff.TimeSignature #'stencil = ##f
  %\override Staff.BarLine #'stencil = ##f
  \set Score.defaultBarType = "empty"
  
}
move = { \bar "" \break }
soprano = \relative c'' {
  \global
  % Music follows here.
  \repeat volta 2 
  {g4 g g g g g g g g g fs g a2 a g1}
  g4 g g a b b b b2 \divisioMaior
  b4 b b c b2(a4 b) a2 g1 \finalis
}

alto = \relative c' {
  \global
  % Music follows here.
  
}

tenor = \relative c' {
  \global
  % Music follows here.
 
}

bass = \relative c {
  \global
  % Music follows here.
  \repeat volta 2 
  {g'4 g g g g g g g g g d g c,2 d g1}
  g4 g g d g g g g2 \divisioMaior
  g4 g g c, g'2(fs4 g) d2 g1 \finalis
}

verse = \lyricmode {
  % Lyrics follow here.
  Bles -- sed be the Name of the Lord hence -- forth and 
    for -- ev -- er -- more.
  Bles -- sed be the Name of the Lord hence -- forth and 
    for -- ev -- er -- more.
}

\score {
  \transpose g f
  \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)
    }
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to