]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
Merge branch 'master' into dev/texi2html
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "2.11.51"
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
12
13 \relative c' { 
14   \new Score \with
15   {
16     \override SpacingSpanner #'uniform-stretching = ##t 
17   }
18   \context StaffGroup << 
19     \new Staff  \context Voice { 
20       \times 2/10 {  c8[ c c c c c c c c c] } 
21       \times 2/10 {  c[  c c c c c c c c c] } 
22     }
23     \new Staff  \context Voice { 
24       \times 2/11 {  c8[ c c c c c c c c c c] } 
25       \times 2/11 {  c[  c c c c c c c c c c] } 
26     }
27   >>
28 }
29
30
31