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