X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fspacing-multi-tuplet.ly;h=f6b578fdf0e1d93ebb8dbee42cbbc5943765a93f;hb=8269167231f9ef8fd2a62e066e0695255f2a1088;hp=7d3c931d5c5386e439cda7990b89e09924a6b621;hpb=d12d721e46d077c3e9557567f84c0eb401fc277a;p=lilypond.git diff --git a/input/regression/spacing-multi-tuplet.ly b/input/regression/spacing-multi-tuplet.ly index 7d3c931d5c..f6b578fdf0 100644 --- a/input/regression/spacing-multi-tuplet.ly +++ b/input/regression/spacing-multi-tuplet.ly @@ -1,34 +1,31 @@ -\version "2.1.22" -\header{ -texidoc = "Concurrent tuplets should be equidistant on all staffs. - -Note that this only spaces correctly (exactly) when @code{raggedright} -is enabled. For a non-@code{raggedright} case, it still shows a bug: -uneven spacing. -" } - - - -multipart = \notes \relative c'{ - \context StaffGroup << - \new Staff \context Voice { - \times 2/10 { c8[ c c c c c c c c c] } - \times 2/10 { c[ c c c c c c c c c] } - } - \new Staff \context Voice { - \times 2/11 { c8[ c c c c c c c c c c] } - \times 2/11 { c[ c c c c c c c c c c] } - } - >> - } - -\score{ - \notes { - \multipart - } +\version "2.12.0" + + \header{ + + texidoc = "Concurrent tuplets should be equidistant on all staves. +Such equidistant spacing is at odds with elegant engraver spacing; +hence it must be switched on explicitly with the +@code{uniform-stretching} property of @code{SpacingSpanner}." +} -% \paper { raggedright = ##t } + +\relative c' { + \new Score \with + { + \override SpacingSpanner #'uniform-stretching = ##t + } + \context StaffGroup << + \new Staff \context Voice { + \times 2/10 { c8[ c c c c c c c c c] } + \times 2/10 { c[ c c c c c c c c c] } + } + \new Staff \context Voice { + \times 2/11 { c8[ c c c c c c c c c c] } + \times 2/11 { c[ c c c c c c c c c c] } + } + >> } +