]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
fix keep-inside-line on the left side (issue #130)
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "2.7.39" \header{
2
3
4   texidoc = "Concurrent tuplets should be equidistant on all staffs.
5 Such equidistant spacing is it at odds with elegant engraver spacing;
6 hence it must be switched on explicitly with the
7 @code{uniform-stretching} property of @code{SpacingSpanner}.
8 "
9
10 }
11
12
13
14 \relative c' { 
15   \new Score \with
16   {
17     \override SpacingSpanner #'uniform-stretching = ##t 
18   }
19   \context StaffGroup << 
20     \new Staff  \context Voice { 
21       \times 2/10 {  c8[ c c c c c c c c c] } 
22       \times 2/10 {  c[  c c c c c c c c c] } 
23     }
24     \new Staff  \context Voice { 
25       \times 2/11 {  c8[ c c c c c c c c c c] } 
26       \times 2/11 {  c[  c c c c c c c c c c] } 
27     }
28   >>
29 }
30
31
32