]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
* buildscripts/mf-to-table.py (base): break table every three
[lilypond.git] / input / regression / spacing-multi-tuplet.ly
1 \version "1.7.18"
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                 \context Staff = ten  \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                 \context Staff = eleven  \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