I'm transcribing an R. B. Hall march, "The Sentinel". The intro repeats,
then the first strain repeats, skips the third ending, plays the second
strain, repeats, dal segnos, and ends at the third ending.

I didn't see how to do it with repeat volta/alternative, so I tried doing it
manually. However, it insisted that it didn't want to end the second volta
section until it hit the next one. This sample shows what I'm trying to do.
Do you know why I keep getting "warning: already have a volta spanner,
ending that one prematurely", and a volta bracket all along the second
strain?

Thank you.

\version "2.11.45"
\score {
  \new Staff \relative c'' {
    \set Score.repeatCommands = #'(start-repeat)
    { a4 b c d }
    \set Score.repeatCommands = #'((volta "1."))
    { a4 b c d }
    \set Score.repeatCommands = #'((volta #f) end-repeat (volta "2.") )
    { a4 b c d }
    \set Score.repeatCommands = #'((volta #f))
    \break

    \set Score.repeatCommands = #'(start-repeat)
    { a4 b c d e f g a g f e d c b a2
      a4 b c d e f g a g f e d c b a2}

    \set Score.repeatCommands = #'((volta "1."))
    { a4 b c d }

    \set Score.repeatCommands = #'((volta #f) (volta "2.") end-repeat)
    { a4 b c d }
    \set Score.repeatCommands = #'((volta #f) (volta "last only"))
    { \bar "||"
      a4 b c d_\markup{\italic "al Trio"}
    }
    \set Score.repeatCommands = #'((volta #f))
  }
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to