]> 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 744e983ee51e504cfc84371ef7d37a5908146400..ed0cd298aacc372ae85d96c0d97866e922a5a651 100644 (file)
@@ -1,14 +1,13 @@
-%% Do not edit this file; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
-%% This file is in the public domain.
-\version "2.13.4"
+% 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: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
+%% 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
@@ -20,7 +19,7 @@ de compás sin que cambie ninguna de las demás propiedades:
 
 
 
-%% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
+%% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
   texidocde = "
 Der @code{\\time}-Befehl verändert die Eigenschaften
 @code{timeSignatureFraction}, @code{beatLength}, @code{beatGrouping}
@@ -34,11 +33,11 @@ Taktart ausgegeben, ohne die anderen Eigenschaften zu beeinflussen:
 
 
 
-%% Translation of GIT committish: e71f19ad847d3e94ac89750f34de8b6bb28611df
+%% Translation of GIT committish: 4ab2514496ac3d88a9f3121a76f890c97cedcf4e
   texidocfr = "
 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
@@ -47,6 +46,7 @@ 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}
@@ -59,17 +59,7 @@ 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
 }
-