]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly
Merge remote-tracking branch 'origin/master' into translation
[lilypond.git] / Documentation / snippets / changing-time-signatures-inside-a-polymetric-section-using--scaledurations.ly
index 3bc0d614ddba59da9bebf14ac357a55b1b6a118d..6b37d262db98c34fbe131cbbdd8afed7e935085b 100644 (file)
@@ -1,25 +1,13 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% DO NOT EDIT this file manually; it is automatically
+%% generated from LSR http://lsr.di.unimi.it
+%% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
+%% and then run scripts/auxiliar/makelsr.py
+%%
 %% This file is in the public domain.
-\version "2.13.29"
+\version "2.18.0"
 
 \header {
-  lsrtags = "rhythms, contexts-and-engravers"
-
-%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
-  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
-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}.
-
-"
-  doctitlees = "Modificar el compás dentro de una sección polimétrica utilizando @code{\\scaleDurations}"
+  lsrtags = "contemporary-notation, contexts-and-engravers, rhythms, workaround"
 
   texidoc = "
 The @code{measureLength} property, together with
@@ -49,12 +37,12 @@ as the second argument of @code{\\scaleDurations}.
 
 <<
   \new Staff {
-    \scaleDurations #'(8 . 5) {
+    \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
     }
   }