]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/different-time.ly
patch::: 1.4.1.jcn3
[lilypond.git] / input / bugs / different-time.ly
1
2 \header {
3 texidoc =" Spacing for one staff in polymetric music should
4 be not hampered by a staff in another time signature.";
5 }
6
7 \score{
8     \context PianoStaff <
9         \context Staff = upper \notes\relative c''{
10             \property Staff.timeSignatureFraction = #'(3 . 4)
11             c4 c c
12             c2.
13                     
14         }
15         \context Staff = lower \notes\relative c' {
16             \property Staff.timeSignatureFraction = #'(4 . 4)
17             c4 c c c
18             c1
19         }
20     > 
21     \paper{
22         linewidth=-1.0;
23         \translator {
24             \ScoreContext
25             \remove Timing_engraver;
26         }
27         \translator {
28             \StaffContext
29             \consists Timing_engraver;
30         }
31     }
32 }