]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/bugs/different-time.ly
release: 1.5.47
[lilypond.git] / input / bugs / different-time.ly
index 927fd1af096c409b920d1d845b781492ef3dada4..32e44eff65f0517ee9581fa8578dc741c5df24ee 100644 (file)
@@ -1,30 +1,36 @@
-%
-% irregular spacing.
+\version "1.3.148"
+
+\header {
+texidoc = " Spacing for one staff in polymetric music should
+be not hampered by a staff in another time signature.
+
+FIXME example was broken at some point. 
+"
+}
 
 \score{
     \context PianoStaff <
         \context Staff = upper \notes\relative c''{
-           \time 3/4;
+           \property Staff.timeSignatureFraction = #'(3 . 4)
            c4 c c
            c2.
                    
         }
-        \context Staff = lower \notes\relative c'{
-%          \clef bass;
-           \time 4/4;
+        \context Staff = lower \notes\relative c' {
+           \property Staff.timeSignatureFraction = #'(4 . 4)
            c4 c c c
            c1
         }
     > 
     \paper{
-       linewidth=-1.0;
+       linewidth=-1.0
        \translator {
            \ScoreContext
-           \remove Timing_engraver;
+           \remove Timing_engraver
        }
        \translator {
            \StaffContext
-           \consists Timing_engraver;
+           \consists Timing_engraver
        }
     }
 }