]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/changing-the-time-signature-without-affecting-the-beaming.ly
Revised autobeam settings patch and ran makelsr.py
[lilypond.git] / Documentation / snippets / changing-the-time-signature-without-affecting-the-beaming.ly
index 4b81d2b2e465ce3fd6e08e3e70f0e0a473b1b9cd..ed0cd298aacc372ae85d96c0d97866e922a5a651 100644 (file)
@@ -1,13 +1,13 @@
-%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.1"
+% Do not edit this file; it is automatically
+% generated from Documentation/snippets/new
+% This file is in the public domain.
+%% Note: this file works from version 2.13.5
+\version "2.13.29"
 
 \header {
-  lsrtags = "rhythms"
-
-%% Translation of GIT committish: 4f881627b3ff5eb538df5221ad77b73d0637aeb4
+%% Translation of GIT committish: 0b55335aeca1de539bf1125b717e0c21bb6fa31b
   texidoces = "
-La instrucción @code{\time} establece las propiedades
+La instrucción @code{\\time} establece las propiedades
 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping} y
 @code{measureLength} en el contexto @code{Timing}, que normalmente
 tiene el alias @code{Score}.  La modificación del valor de
@@ -18,7 +18,8 @@ de compás sin que cambie ninguna de las demás propiedades:
   doctitlees = "Cambio de compás sin afectar al barrado"
 
 
-%% Translation of GIT committish: 0364058d18eb91836302a567c18289209d6e9706
+
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   texidocde = "
 Der @code{\\time}-Befehl verändert die Eigenschaften
 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
@@ -31,11 +32,12 @@ Taktart ausgegeben, ohne die anderen Eigenschaften zu beeinflussen:
   doctitlede = "Die Taktart verändern ohne die Bebalkung zu beeinflussen"
 
 
-%% Translation of GIT committish: e71f19ad847d3e94ac89750f34de8b6bb28611df
+
+%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
   texidocfr = "
-La commande @code{\time} gère les propriétés
+La commande @code{\\time} gère les propriétés
 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
-et @code{measureLength} dans le contexte @code{Timing}, normallement
+et @code{measureLength} dans le contexte @code{Timing}, normalement
 rattaché à @code{Score}.  Le fait de modifier la valeur de
 @code{timeSignatureFraction} aura pour effet de changer l'apparence du
 symbole affiché sans pour autant affecter les autres propriétés de la
@@ -44,29 +46,20 @@ métrique :
 "
   doctitlefr = "Changement de métrique sans affecter les règles de ligature"
 
+  lsrtags = "rhythms"
   texidoc = "
 The @code{\\time} command sets the properties
 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
 and @code{measureLength} in the @code{Timing} context, which is
 normally aliased to @code{Score}. Changing the value of
 @code{timeSignatureFraction} causes the new time signature symbol to be
-printed without changing any of the other properties: 
+printed without changing any of the other properties:
 
 "
   doctitle = "Changing the time signature without affecting the beaming"
 } % begin verbatim
 
-\relative c'' {
-  \time 3/4
-  a16 a a a a a a a a a a a
-
-  % Change time signature symbol but keep 3/4 beaming
-  % due to unchanged underlying time signature
-  \set Score.timeSignatureFraction = #'(12 . 16)
-  a16 a a a a a a a a a a a
 
-  \time 12/16
-  % Lose 3/4 beaming now \time has been changed
-  a16 a a a a a a a a a a a
+\markup {
+  This snippet is deprecated as of 2.13.5 and will be removed in 2.14
 }
-