]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly
Imported Upstream version 2.18.0
[lilypond.git] / Documentation / snippets / changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly
index d49857c542c67e0cf927a17c2b2300a296c95205..74a6d43c10c7bbaf2a63be739f53cbd97439cfe8 100644 (file)
@@ -4,8 +4,8 @@
 % and then run scripts/auxiliar/makelsr.py
 %
 % This file is in the public domain.
-%% Note: this file works from version 2.15.17
-\version "2.16.0"
+%% Note: this file works from version 2.17.11
+\version "2.17.11"
 
 \header {
   lsrtags = "workaround, contexts-and-engravers, contemporary-notation, rhythms"
   \new Staff {
     \scaleDurations 8/5 {
       \time 6/8
-      \set Timing.measureLength = #(ly:make-moment 6 5)
+      \set Timing.measureLength = #(ly:make-moment 6/5)
       b8 b b b b b
       \time 2/4
-      \set Timing.measureLength = #(ly:make-moment 4 5)
+      \set Timing.measureLength = #(ly:make-moment 4/5)
       b4 b
     }
   }