lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: 2.25.2 optional fine endings


From: Aaron Hill
Subject: Re: 2.25.2 optional fine endings
Date: Sat, 11 Mar 2023 22:40:30 -0800

On 2023-03-11 10:34 pm, Paul Scott wrote:
This still gives the warning and I don't want any repeats there.

As the warning is indicating, you are trying to start a new volta bracket when one already exists.

You need to explicitly terminate the first one when you are using repeatCommands:

%%%%
voltaFine = \markup { \text \upright \fontsize #2 "Fine Ending" }
voltaCont = \markup { \text \upright \fontsize #2 "To Cont." }
\fixed c' {
   c1
   \set Score.repeatCommands = #`((volta ,voltaFine))
   c4 d c2 \bar "|."
   \set Score.repeatCommands = #`((volta #f) (volta ,voltaCont))
   f4 g a b
   \set Score.repeatCommands = #'((volta #f))
}
%%%%

(Quasi-quoting can help keep things more concise.)


-- Aaron Hill



reply via email to

[Prev in Thread] Current Thread [Next in Thread]