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