]> git.donarmstrong.com Git - lilypond.git/blob - input/multi.ly
release: 0.1.65
[lilypond.git] / input / multi.ly
1 \header{
2 filename =       "multi.ly";
3 description =    "stupid testfile for pl68 features.";
4 enteredby =      "HWN";
5 copyright =      "public domain";
6 }
7 %{
8 Tested Features: \multi
9
10
11 WARNING: the \multi construct is not very intuitive.  You better try
12 the
13
14         \type Grand_staff <
15                 \type Staff = treble {.. }
16                 \type Staff = bass {.. }
17         >               
18
19 construct to get multiple staffs, it's cleaner
20
21 %}
22
23
24 \version "0.1.15";
25
26 \score{
27         \melodic 
28                 { \octave c'; c4 c4 
29                         \multi 1 <  { c2 c2 } { c'2 c'2 } > 
30                         \multi 2 <  { \stemdown c2 c2 } { \stemup c'2 c'2 } > 
31                         \multi 3 < { \clef "bass"; c2 c2 } 
32                            { \meter 2/4;\bar "||";
33                                  \key fis cis gis; c'2 c'2 } 
34
35                                 c2 c1 
36                         c1 c1
37                         \multi 1 < \multi 3 < 
38                                 { \meter 2/4; \clef "violin"; c2 c2 }
39                                 { \meter 2/4; \clef "bass"; c2 c2 }
40                         >
41                         \multi 3 < 
42                                 { \meter 2/4; \clef "violin"; c2 c2 }
43                                 { \meter 2/4; \clef "bass"; c2 c2 }
44                         >
45                         >
46                 }
47 }