]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/spacing-multi-tuplet.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
index f6b578fdf0e1d93ebb8dbee42cbbc5943765a93f..0f11ac8677129fbf4da38a909f22d23f10d27942 100644 (file)
@@ -1,28 +1,19 @@
-\version "2.12.0"
+\version "2.19.21"
 
  \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}."
+  texidoc = "Concurrent tuplets should be equidistant on all staves."
 }
 
+\paper {ragged-right = ##f }
 
-
-\relative c' { 
-  \new Score \with
-  {
-    \override SpacingSpanner #'uniform-stretching = ##t 
-  }
+\relative { 
   \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] } 
+      \tuplet 10/8 {  c'8[ 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] } 
+      \tuplet 8/8 {  c8[ c c c c c c c] }
     }
   >>
 }