]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
acc53cc8fe5e51c66c0b05643ee7b5bb883e0242
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "2.16.0"
2
3  \header{
4
5   texidoc = "Concurrent tuplets should be equidistant on all staves.
6 Such equidistant spacing is at odds with elegant engraver spacing;
7 hence it must be switched on explicitly with the
8 @code{uniform-stretching} property of @code{SpacingSpanner}."
9 }
10
11 \layout{
12   \context{
13     \Score
14     \override SpacingSpanner #'uniform-stretching = ##t
15   }
16 }
17
18 \relative c' { 
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