]> git.donarmstrong.com Git - lilypond.git/blob - input/test/different-time-signatures.ly
Removed file; it was a duplicate of beam-isknee.ly
[lilypond.git] / input / test / different-time-signatures.ly
1 \version "1.7.18"
2 % possibly rename to time-signature-multiple ?
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 \header{ texidoc="@cindex Time Signature Multiple
11 You can have multiple time signatures occuring at the same time.
12 " }
13
14 \score{
15     \notes \relative c'  <
16         \context Staff= AS {
17             \property Staff.timeSignatureFraction = #'(3 . 4) 
18             c4 c c | c c c |
19         }
20         \context Staff=BS {
21             \property Staff.timeSignatureFraction = #'(2  . 4)      
22             c4 c | c c | c c
23         }
24         % TODO: make c4. here align  with c4 there.
25         \context Staff =CS {
26             \property Staff.timeSignatureFraction = #'(3 . 8) 
27             c4. c8 c c   c4. c8 c c
28         }
29     >
30
31     \paper{
32         raggedright = ##t
33         \translator{
34             \ScoreContext
35 %%FIXME     BreakAlignment \override #'space-alist = #nbal
36             \remove Timing_engraver
37         }
38         \translator{
39             \StaffContext
40             \consists Timing_engraver
41         }
42     }
43 }
44 %% new-chords-done %%