]> git.donarmstrong.com Git - lilypond.git/blob - input/test/different-time-signatures.ly
release: 1.2.11
[lilypond.git] / input / test / different-time-signatures.ly
1
2 % barline spacing  disrupts visual rhythm.
3
4 \scm "(set! space-alist (assoc-set! space-alist '(\"Staff_bar\" \"begin-of-note\") '(minimum_space 0.0)))";
5 \scm "(set! space-alist (assoc-set! space-alist '(\"\" \"Staff_bar\") '(minimum_space 0.0)))";
6
7 \score{
8     \notes \relative c'  <
9         \context Staff= AS {
10             \time 3/4;
11             c4 c c | c c c |
12         }
13         \context Staff=BS {
14             \time 2/4;
15             c4 c | c c | c c
16         }
17         % TODO: make c4. here align  with c4 there.
18         \context Staff =CS {
19             \time 3/8;
20             c4. c8 c c   c4. c8 c c
21         }
22     >
23
24     \paper{
25         linewidth = -1.0\cm;
26         \translator{
27             \ScoreContext
28             \remove Timing_engraver;
29         }
30         \translator{
31             \StaffContext
32             \consists Timing_engraver;
33         }
34     }
35 }