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