Hi all

How can I avoid the collision warning and the omission of one of the marks in a way that both the \codaMark and the \sectionLabel are printed side by side (ideally the codaMark above the barline and the sectionLabel with a minimal offset to the right).

TIA

Stephan

%%% MWE

\version "2.25.4"

tuneWithMarks = \relative c' {
  c4 4 4 4
  \once \override Score.CodaMark.extra-offset = #'(-2 . 0) % moves the mark but does not avoid collision/omission
  \codaMark 1

  \once \override Score.SectionLabel.extra-offset = #'(2 . 0) % ... does not help either
  \sectionLabel "Chorus"
  4 4 4 4
}

\score {
  \tuneWithMarks
  \layout {}
}


Reply via email to