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