]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/bugs/different-time.ly
release: 1.5.47
[lilypond.git] / input / bugs / different-time.ly
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..32e44eff65f0517ee9581fa8578dc741c5df24ee 100644 (file)
@@ -0,0 +1,36 @@
+\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''{
+           \property Staff.timeSignatureFraction = #'(3 . 4)
+           c4 c c
+           c2.
+                   
+        }
+        \context Staff = lower \notes\relative c' {
+           \property Staff.timeSignatureFraction = #'(4 . 4)
+           c4 c c c
+           c1
+        }
+    > 
+    \paper{
+       linewidth=-1.0
+       \translator {
+           \ScoreContext
+           \remove Timing_engraver
+       }
+       \translator {
+           \StaffContext
+           \consists Timing_engraver
+       }
+    }
+}