lilypond-user
[Top][All Lists]
Advanced

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

Re: Time signature at the end of measure before jump to coda


From: Xavier Scheuer
Subject: Re: Time signature at the end of measure before jump to coda
Date: Sat, 3 Aug 2024 20:08:38 +0200

On Sat, 3 Aug 2024 at 17:17, Vlado Ilić <kakonema@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

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