I’m using analysis brackets as shown in the snippet below:
\version "2.24.3"
\layout {
\context { \Voice \consists Horizontal_bracket_engraver } }
\relative c' {c1 \startGroup | \break
c1 \stopGroup
}
which produces the following output:
[image.png]
I would like for the bracket continuation in bar 2 to begin after the bar
number, clef, key, and time signature information at the start of the staff. I
found break-overshoot on [this reference
page](https://lilypond.org/doc/v2.25/Documentation/internals/horizontalbracket)
which seems to suggest that it’s what I’m looking for:
> A pair of numbers specifying how much a broken spanner sticks out of its
> bounds horizontally on the broken side(s). For broken beams and broken tuplet
> brackets, the bounds are given by the prefatory matter on the left and/or the
> rightmost column on the right. For broken horizontal brackets, the bounds are
> the leftmost and/or rightmost column; for broken measure spanners, the left
> and/or right edge of the staff.
Here is the result when that option is applied:
\version "2.24.3"
\layout {
\context {
\Voice
\consists Horizontal_bracket_engraver
\override HorizontalBracket.break-overshoot = #'(5 . 5)
}
}
\relative c' {c1\startGroup | \break
c1\stopGroup}
[image.png]
largely unchanged. What should I do?
Fennel