On Sat, 3 Aug 2024 at 17:17, Vlado Ilić <kakon...@gmail.com> wrote:
>
> So i need something like in the first picture, on coda i have different
time signature than the one before the jump so i need to mark time change
just before the jump. Also related, in the second image i need to mark time
and key change before jumping from D.S. to the beginning of the piece. How
can i achieve that? Thanks

Hello,

For 1, use \once \override Score.BreakAlignment.break-align-orders.

\relative c'' {
  \partial 8 e16 f
  \once \override Score.BreakAlignment.break-align-orders =
##((left-edge
    staff-ellipsis
    cue-end-clef
    ambitus
    breathing-sign
    signum-repetitionis
    clef
    cue-clef
    key-cancellation
    key-signature
    time-signature
    staff-bar
    custos)
  (left-edge
    staff-ellipsis
    cue-end-clef
    ambitus
    breathing-sign
    signum-repetitionis
    clef
    cue-clef
    key-cancellation
    key-signature
    time-signature
    staff-bar
    custos)
  (left-edge
    staff-ellipsis
    ambitus
    breathing-sign
    signum-repetitionis
    clef
    key-cancellation
    key-signature
    time-signature
    staff-bar
    cue-clef
    custos))
  \once \override Staff.Parentheses.font-size = 4
  \parenthesize \time 6/8
  g4
}

Kind regards,
Xavier

Reply via email to