]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/changing-the-time-signature-without-affecting-the-beaming.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / lsr / changing-the-time-signature-without-affecting-the-beaming.ly
diff --git a/input/lsr/changing-the-time-signature-without-affecting-the-beaming.ly b/input/lsr/changing-the-time-signature-without-affecting-the-beaming.ly
deleted file mode 100644 (file)
index 615c355..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-%% 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.12.3"
-
-\header {
-  lsrtags = "rhythms"
-
-  texidoces = "
-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
-@code{timeSignatureFraction} hace que se imprima la nueva indicación
-de compás sin que cambie ninguna de las demás propiedades:
-
-"
-  doctitlees = "Cambio de compás sin afectar al barrado"
-
-  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: 
-
-"
-  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
-}
-