]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/different-time.ly
release: 1.5.47
[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 FIXME example was broken at some point. 
8 "
9 }
10
11 \score{
12     \context PianoStaff <
13         \context Staff = upper \notes\relative c''{
14             \property Staff.timeSignatureFraction = #'(3 . 4)
15             c4 c c
16             c2.
17                     
18         }
19         \context Staff = lower \notes\relative c' {
20             \property Staff.timeSignatureFraction = #'(4 . 4)
21             c4 c c c
22             c1
23         }
24     > 
25     \paper{
26         linewidth=-1.0
27         \translator {
28             \ScoreContext
29             \remove Timing_engraver
30         }
31         \translator {
32             \StaffContext
33             \consists Timing_engraver
34         }
35     }
36 }