]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spanner-break-overshoot.ly
369c3cb81574f3b68cabea19a2d565d0027ec045
[lilypond.git] / input / regression / spanner-break-overshoot.ly
1 \version "2.14.0"
2
3 \header {
4   texidoc = "The @code{break-overshoot} property sets the amount that
5 a spanner (in this case: the beam and tuplet bracket) in case of a line
6 break extends beyond the rightmost column and extends to the left beyond the
7 prefatory matter."
8 }
9
10 \paper { ragged-right = ##t }
11
12 \relative c'' {
13   \override Beam #'break-overshoot = #'(1.0 . 2.0)
14   \override TupletBracket #'break-overshoot = #'(1.0 . 2.0)
15   \override TupletBracket #'bracket-visibility = ##t
16   \override Beam #'breakable = ##t
17   c2.. \times 2/3 { c8.[ \break c8.] }
18 }