]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/spacing-multi-tuplet.ly
move from input/test/
[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
7
8
9 multipart =  \notes \relative c'{ 
10     \context StaffGroup < 
11                 \context Staff = one \context Voice { 
12                    c4
13                    c 
14                 }
15                 \context Staff = two \context Voice { 
16                     c8-[ c] 
17                     c-[ c] 
18                 }
19                 \context Staff = three \context Voice { 
20                    \times 2/3 {  c8-[ c c] } 
21                    \times 2/3 {  c-[  c c] } 
22                 }
23                 \context Staff = four \context Voice { 
24                    \times 2/4 {  c8-[ c c c] }
25                    \times 2/4 {  c-[  c c c] } 
26                 }
27                 \context Staff = five \context Voice { 
28                    \times 2/5 {  c8-[ c c c c] } 
29                    \times 2/5 {  c-[  c c c c] } 
30                 }
31                 \context Staff = six \context Voice { 
32                    \times 2/6 {  c8-[ c c c c c] } 
33                    \times 2/6 {  c-[  c c c c c] } 
34                 }
35                 \context Staff = seven \context Voice { 
36                    \times 2/7 {  c8-[ c c c c c c] } 
37                    \times 2/7 {  c-[  c c c c c c] } 
38                 }
39                 \context Staff = eight \context Voice { 
40                    \times 2/8 {  c8-[ c c c c c c c] } 
41                    \times 2/8 {  c-[  c c c c c c c] } 
42                 }
43                 \context Staff = nine  \context Voice { 
44                    \times 2/9 {  c8-[ c c c c c c c c] } 
45                    \times 2/9 {  c-[  c c c c c c c c] } 
46                 }
47                 \context Staff = ten  \context Voice { 
48                    \times 2/10 {  c8-[ c c c c c c c c c] } 
49                    \times 2/10 {  c-[  c c c c c c c c c] } 
50                 }
51                 \context Staff = eleven  \context Voice { 
52                    \times 2/11 {  c8-[ c c c c c c c c c c] } 
53                    \times 2/11 {  c-[  c c c c c c c c c c] } 
54                 }
55             >
56         }
57     
58 \score{
59     \notes { 
60         \multipart 
61     }
62
63 % with raggedright it tests the natural distances, without the
64 % stretching distances.
65     
66 %    \paper { raggedright = ##t }
67
68 }
69
70 %% new-chords-done %%