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