]> git.donarmstrong.com Git - lilypond.git/blob - input/test/different-time-signatures.ly
* Website fixes:
[lilypond.git] / input / test / different-time-signatures.ly
1 \version "1.7.18"
2
3
4 % barline spacing  disrupts visual rhythm.
5
6 %%FIXME
7
8 %% #(define nbal (acons '("Staff_bar" "begin-of-note") '(minimum_space 0.0) default-break-align-space-alist))  %% FIXME
9
10 \score{
11     \notes \relative c'  <
12         \context Staff= AS {
13             \property Staff.timeSignatureFraction = #'(3 . 4) 
14             c4 c c | c c c |
15         }
16         \context Staff=BS {
17             \property Staff.timeSignatureFraction = #'(2  . 4)      
18             c4 c | c c | c c
19         }
20         % TODO: make c4. here align  with c4 there.
21         \context Staff =CS {
22             \property Staff.timeSignatureFraction = #'(3 . 8) 
23             c4. c8 c c   c4. c8 c c
24         }
25     >
26
27     \paper{
28         raggedright = ##t
29         \translator{
30             \ScoreContext
31 %%FIXME     BreakAlignment \override #'space-alist = #nbal
32             \remove Timing_engraver
33         }
34         \translator{
35             \StaffContext
36             \consists Timing_engraver
37         }
38     }
39 }
40 %% new-chords-done %%