]> git.donarmstrong.com Git - lilypond.git/blob - input/bugs/different-time.ly
4b23edc61465e281ad788bcbe2f102670fd01732
[lilypond.git] / input / bugs / different-time.ly
1 %
2 % irregular spacing.
3
4 \score{
5     \context PianoStaff <
6         \context Staff = upper \notes\relative c''{
7             \property Staff.timeSignatureFraction = #'(3 . 4)
8             c4 c c
9             c2.
10                     
11         }
12         \context Staff = lower \notes\relative c' {
13             \property Staff.timeSignatureFraction = #'(4 . 4)
14             c4 c c c
15             c1
16         }
17     > 
18     \paper{
19         linewidth=-1.0;
20         \translator {
21             \ScoreContext
22             \remove Timing_engraver;
23         }
24         \translator {
25             \StaffContext
26             \consists Timing_engraver;
27         }
28     }
29 }