X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Fregression%2Fspacing-multi-tuplet.ly;h=bab9232a8d1b7113ec43676e601aaa1352c96622;hb=fbe8b9bf789f4a9833e1581dbb6ba4fce71a6cd2;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..bab9232a8d 100644 --- a/input/regression/spacing-multi-tuplet.ly +++ b/input/regression/spacing-multi-tuplet.ly @@ -1,34 +1,32 @@ -\version "2.1.22" -\header{ -texidoc = "Concurrent tuplets should be equidistant on all staffs. +\version "2.17.11" -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. -" } + \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}." +} +\layout{ + \context{ + \Score + \override SpacingSpanner.uniform-stretching = ##t + } +} -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 +\relative c' { + \context StaffGroup << + \new Staff \context Voice { + \tuplet 10/2 { c8[ c c c c c c c c c] } + \tuplet 10/2 { c[ c c c c c c c c c] } } - -% \paper { raggedright = ##t } - + \new Staff \context Voice { + \tuplet 11/2 { c8[ c c c c c c c c c c] } + \tuplet 11/2 { c[ c c c c c c c c c c] } + } + >> } +