]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
* input/: Convert ly files that still had \property. Fixes make
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "2.1.22"
2 \header{
3 texidoc = "Concurrent tuplets should be spaced equidistantly on
4 all staffs.
5
6 Note that this only spaces correctly (exactly) when raggedright
7 is. For non-raggedright, it still shows a bug: uneven spacing. 
8 "  }
9
10
11
12 multipart = \notes \relative c'{ 
13     \context StaffGroup << 
14                 \new Staff  \context Voice { 
15                    \times 2/10 {  c8[ c c c c c c c c c] } 
16                    \times 2/10 {  c[  c c c c c c c c c] } 
17                 }
18                 \new Staff  \context Voice { 
19                    \times 2/11 {  c8[ c c c c c c c c c c] } 
20                    \times 2/11 {  c[  c c c c c c c c c c] } 
21                 }
22             >>
23         }
24     
25 \score{
26     \notes { 
27         \multipart 
28     }
29
30 %    \paper { raggedright = ##t }
31
32 }
33
34