]> git.donarmstrong.com Git - lilypond.git/blob - input/test/spacing.ly
5161bef5d237d72dc944a248718a70d0a7ae0091
[lilypond.git] / input / test / spacing.ly
1 \header{
2 title= "Spacing";
3 subtitle = "proofsheet"; 
4 enteredby =      "jcn";
5 copyright =      "public domain";
6 TestedFeatures =         "This file tests various spacings";
7 }
8
9 \version "1.0.16";
10
11 multipart = \notes \relative c'{ 
12     \context StaffGroup < 
13                 \context Staff = one { 
14                    c4
15                    c 
16                    c c 
17                 }
18                 \context Staff = two { 
19                    [c8 c] 
20                    [c c] 
21                    [c c] [c c] 
22                 }
23                 \context Staff = three { 
24                    \times 2/3 { [c8 c c] } 
25                    \times 2/3 { [c  c c] } 
26                    \times 2/3 { [c  c c] } \times 2/3 { [c c c] } 
27                 }
28                 \context Staff = four { 
29                    \times 2/4 { [c8 c c c] }
30                    \times 2/4 { [c  c c c] } 
31                    \times 2/4 { [c  c c c] } \times 2/4 { [c c c c] } 
32                 }
33                 \context Staff = five { 
34                    \times 2/5 { [c8 c c c c] } 
35                    \times 2/5 { [c  c c c c] } 
36                    \times 2/5 { [c  c c c c] } \times 2/5 { [c c c c c] } 
37                 }
38                 \context Staff = six { 
39                    \times 2/6 { [c8 c c c c c] } 
40                    \times 2/6 { [c  c c c c c] } 
41                    \times 2/6 { [c  c c c c c] } \times 2/6 { [c c c c c c] } 
42                 }
43                 \context Staff = seven { 
44                    \times 2/7 { [c8 c c c c c c] } 
45                    \times 2/7 { [c  c c c c c c] } 
46                    \times 2/7 { [c  c c c c c c] } 
47                    \times 2/7 { [c  c c c c c c] } 
48                 }
49                 \context Staff = eight { 
50                    \times 2/8 { [c8 c c c c c c c] } 
51                    \times 2/8 { [c  c c c c c c c] } 
52                    \times 2/8 { [c  c c c c c c c] } 
53                    \times 2/8 { [c  c c c c c c c] } 
54                 }
55                 \context Staff = nine { 
56                    \times 2/9 { [c8 c c c c c c c c] } 
57                    \times 2/9 { [c  c c c c c c c c] } 
58                    \times 2/9 { [c  c c c c c c c c] } 
59                    \times 2/9 { [c  c c c c c c c c] } 
60                 }
61                 \context Staff = ten { 
62                    \times 2/10 { [c8 c c c c c c c c c] } 
63                    \times 2/10 { [c  c c c c c c c c c] } 
64                    \times 2/10 { [c  c c c c c c c c c] } 
65                    \times 2/10 { [c  c c c c c c c c c] } 
66                 }
67                 \context Staff = eleven { 
68                    \times 2/11 { [c8 c c c c c c c c c c] } 
69                    \times 2/11 { [c  c c c c c c c c c c] } 
70                    \times 2/11 { [c  c c c c c c c c c c] } 
71                    \times 2/11 { [c  c c c c c c c c c c] } 
72                 }
73             >
74         }
75
76 singlepart = \notes{ 
77         c4 d e f
78         c4 d e [f8 f]
79         c4 d e f8 [f16 f]
80         c4 d e f8 f16 [f32 f]
81         c4 d e f8 f16 f32 [f64 f]
82         c4 c4 c4 c4
83         
84     }
85     
86     \score{
87     \notes { 
88 %       \singlepart 
89         \multipart 
90     }
91     \paper {
92 %    linewidth= 18.\cm;
93 %       gourlay_maxmeasures = 4.0
94     }
95 }