Todd Hesla writes:

> When processing a repeat block with a leading rest (and lyrics), Lilypond 
> 2.14.2
> adds an extraneous leading repeat sign where the lyrics start (after the 
> rest).
> The snippet below reliably reproduces the problem.  If the lyrics are removed
> (that is, if the "lyricsto" line is commented out), the extraneous repeat sign
> disappears.
>
> - - - - - - - - - - - - - - - - - - - - - - - - - -
> \version "2.14.2"
>
> notes = \relative c' {
>   c4 c c c |
>   \repeat volta 2 { r c d e | f g a( b) | c1 | }
> }
>
> words = \lyricmode {
>   I want to sing.
>   \repeat volta 2 {
>     Cre -- ate in me a clean heart.
>   }
> }
>
> \score {
>   \new Staff <<
>     \clef treble
>     \time 4/4
>     \key c \major
>     \new Voice = "solo" \notes
>     \lyricsto "solo" \new Lyrics \words
>   >>
> }

Just had a play with this. I have never used \repeat within lyrics and I
was surprised to see that you had done so.

How about:

\version "2.14.2"

notes = \relative c' {
  c4 c c c |
  \repeat volta 2 { r c d e | f g a( b) | c1 | }
}

words = \lyricmode {
  I want to sing.
    Cre -- ate in me a clean heart.
}

\score {
  \new Staff <<
    \clef treble
    \time 4/4
    \key c \major
    \new Voice = "solo" \notes
    \lyricsto "solo" \new Lyrics \words
  >>
}

Cheers,
Colin.

-- 
Colin Hall

_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to