Hullo. I am using lilypond for the first time, & am finding it to be a
delight. I have successfully set a few of the Resurrectional Apolytikia (or
Troparia) in Tones 1-4 using a variety of Russian-based chants in 2 voices.
Now, I am working on Tone V in the Kievan Chant. I am finding that when I
use a syll -- a -- ble that lilypond does not always give me the hyphen I
ask for. attached is my current 'code' (for lack of a better word for it)
for the Tone V. I wish to get a hyphen in the words ``glorious'' &
``Resurrection'' at the places where there is currently an underscore
[except in the last syllable of Resurrection where I have the slur
indicated]. Any help would be appreciated.

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

\header {
  title = "Octoechoes ~ Tone 5"
  subtitle = "Ressurectional Apolytikion"
  composer = "Kievan Chant"
}

global = {
  \key f \major
  \time 22/4
  \override Staff.TimeSignature #'stencil = ##f
  \override Staff.BarLine #'stencil = ##f
}

soprano = \relative c'' {
  \global
  % Music follows here.
  g4 g2 g4 g f g a2 f4 f f2 \divisioMinima
  a4 a a a a a g a2 g2 \divisioMinima
  g2 g4 g g g e f(g f e) d1 \divisioMaior
  g4 g g2 g4 g g g f g a2 f4 f f2 \divisioMinima
  a4 g a2 g2 \divisioMinima
  g4 e f(g f) e d1 \divisioMaior
  a'4 a g2 f4 f f f e2(f4 e) d1 \finalis
}

alto = \relative c' {
  \global
  % Music follows here.
  c4 c2 c4 c d c f2 f4 f f2 \divisioMinima
  f4 f f f f f f f2 c \divisioMinima
  c2 c4 c c c c f(e f c) d1 \divisioMaior
  c4 c c2 c4 c c c d c f2 f4 f f2 \divisioMinima
  f4 f f2 c \divisioMinima
  c4 c f(e f) c d1 \divisioMaior
  f4 f e2 f4 f f f c2(a4 c) d1 \finalis
}

tenor = \relative c' {
  \global
  % Music follows here.
  g4 g2 g4 g f g a2 f4 f f2 \divisioMinima
  a4 a a a a a g a2 g2 \divisioMinima
  g2 g4 g g g e f(g f e) d1 \divisioMaior
  g4 g g2 g4 g g g f g a2 f4 f f2 \divisioMinima
  a4 g a2 g2 \divisioMinima
  g4 e f(g f) e d1 \divisioMaior
  a'4 a g2 f4 f f f e2(f4 e) d1 \finalis
}

bass = \relative c {
  \global
  % Music follows here.
  c4 c2 c4 c d c f2 f4 f f2 \divisioMinima
  f4 f f f f f f f2 c \divisioMinima
  c2 c4 c c c c f(e f c) d1 \divisioMaior
  c4 c c2 c4 c c c d c f2 f4 f f2 \divisioMinima
  f4 f f2 c \divisioMinima
  c4 c f(e f) c d1 \divisioMaior
  f4 f e2 f4 f f f c2(a4 c) d1 \finalis
}

verse = \lyricmode {
  % Lyrics follow here.
  Let us, the faithful; praise and wor -- ship the Word,
Co -- Eternal with the Father and the Spi -- rit,
born for our salvation from the Vir __ gin;
for He willed to be lifted up -- on the Cross in the flesh,
to en -- dure death,
and to raise __ the dead
by His glo __ ri __ ous Re __ ssu __ rec __ tion!
}

\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 { }
  \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