]> git.donarmstrong.com Git - lilypond.git/blob - input/test/spacing.ly
50a9053fbb1bd1c0ee5a024b27913ecb7d293a5f
[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.10";
10
11 multipart = \notes{ 
12     \type StaffGroup < 
13                 { 
14                    c4
15                    c 
16                    c c 
17                 }
18                 { 
19                    [c8 c] 
20                    [c c] 
21                    [c c] [c c] 
22                 }
23                 { 
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                 { 
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                 { 
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                 { 
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                 { 
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] } \times 2/7 { [c c c c c c c] } 
47                 }
48             >
49         }
50
51 singlepart = \notes{ 
52         c4 d e f
53         c4 d e [f8 f]
54         c4 d e f8 [f16 f]
55         c4 d e f8 f16 [f32 f]
56         c4 d e f8 f16 f32 [f64 f]
57         c4 c4 c4 c4
58         
59     }
60     
61     \score{
62     \notes { 
63 %       \singlepart 
64         \multipart 
65     }
66     \paper {
67 %    linewidth= 18.\cm;
68 %       gourlay_maxmeasures = 4.0
69     }
70 }