]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
Fixed errors in Catalan translation
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "2.17.11"
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       \tuplet 10/2 {  c8[ c c c c c c c c c] } 
22       \tuplet 10/2 {  c[  c c c c c c c c c] } 
23     }
24     \new Staff  \context Voice { 
25       \tuplet 11/2 {  c8[ c c c c c c c c c c] } 
26       \tuplet 11/2 {  c[  c c c c c c c c c c] } 
27     }
28   >>
29 }
30
31
32