]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing-time-signatures-inside-a-polymetric-section-using-scaledurations.ly
Merge commit 'origin/dev/jneeman' into systems-per-page
[lilypond.git] / input / lsr / changing-time-signatures-inside-a-polymetric-section-using-scaledurations.ly
index 3e4c94fc3cb6194092d9064100ffa74fcbf0be37..7bfe7ef4772516bdeb89025473559e243d43ceb9 100644 (file)
@@ -1,20 +1,20 @@
 %% Do not edit this file; it is auto-generated from input/new
 %% This file is in the public domain.
-\version "2.11.57"
+\version "2.13.0"
 \header {
   texidoces = "
 La propiedad @code{measureLength}, junto con
 @code{measurePosition}, determina cuándo es necesario dibujar una
 línea divisoria.  Sin embargo, al utilizar
-@code{\scaleDurations}, el escalado proporcional de las
+@code{\\scaleDurations}, el escalado proporcional de las
 duraciones hace difícil introducir cambios de compás.  En este
 caso se debe establecer manualmente el valor de
 @code{measureLength} utilizando la función @code{ly:make-moment}.
 El segundo argumento debe ser el mismo que el segundo argumento de
-@code{\scaleDurations}.
+@code{\\scaleDurations}.
 
 "
-  doctitlees = "Modificar el compás dentro de una sección polimétrica utilizando @code{\scaleDurations}"
+  doctitlees = "Modificar el compás dentro de una sección polimétrica utilizando @code{\\scaleDurations}"
 
   lsrtags = "rhythms,contexts-and-engravers"
   texidoc = "The @code{measureLength} property, together with
@@ -27,6 +27,7 @@ second argument must be the same as the second argument of
   doctitle = "Changing time signatures inside a polymetric section using @code{\\scaleDurations}"
 } % begin verbatim
 
+
 \layout {
   \context {
     \Score
@@ -44,10 +45,10 @@ second argument must be the same as the second argument of
   \new Staff {
     \scaleDurations #'(8 . 5) {
       \time 6/8
-      \set Timing.measureLength = #(ly:make-moment 3 5)
+      \set Timing.measureLength = #(ly:make-moment 6 5)
       b8 b b b b b
       \time 2/4
-      \set Timing.measureLength = #(ly:make-moment 2 5)
+      \set Timing.measureLength = #(ly:make-moment 4 5)
       b4 b
     }
   }