On Thu, Jul 31, 2014 at 08:36:43PM +0000, Marten wrote:
> 
> Yes, Jim, that's what I'm trying to do.
> 
> However, in your code, with two \new Voice statements, you will break the 
> piece and an ambitus will be displayed at the beginning of each Voice.

So use the abitus engraver in the Staff context instead of the
Voice context:

Jim

\version "2.19.0"

refrain = \lyricmode {
  Here's the re -- frain.
  Here's the re -- frain.
}

verseOne = \lyricmode {
  This is verse one.
  This is verse one.
}

verseTwo = \lyricmode {
  This is verse two.
  This is verse two.
}

verseThree = \lyricmode {
  This is verse three.
  This is verse three.
}

verseFour = \lyricmode {
  This is verse four.
  This is verse four.
}


\score {
  <<
    {
      \new Voice = "refrain" {
        c'4 c'4 c'4 c'4 \break
        c'4 c'4 c'4 c'4 \break
      }
      \new Voice = "verse" {
        g'4 g'4 g'4 g'4 \break
        g'4 g'4 g'4 g'4 \break
      }
    }
    \new Lyrics \lyricsto "refrain" \refrain
    \new Lyrics \lyricsto "verse" \verseOne
    \new Lyrics \lyricsto "verse" \verseTwo
    \new Lyrics \lyricsto "verse" \verseThree
    \new Lyrics \lyricsto "verse" \verseFour
  >>
}

\layout {
  \context {
    \Staff
      \consists "Ambitus_engraver"
  }
}

Attachment: test-lyric.pdf
Description: Adobe PDF document

_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to