X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=input%2Flsr%2Fsub-dividing-beams.ly;fp=input%2Flsr%2Fsub-dividing-beams.ly;h=0000000000000000000000000000000000000000;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=ed6f2584c5beec69f71d97e0392a059a5b39d33d;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/input/lsr/sub-dividing-beams.ly b/input/lsr/sub-dividing-beams.ly deleted file mode 100644 index ed6f2584c5..0000000000 --- a/input/lsr/sub-dividing-beams.ly +++ /dev/null @@ -1,58 +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 = " -Las barras de semicorcheas (o notas más breves) seguidas no se -subdividen de forma predeterminada. Esto es: las tres (o más) -barras se prolongan, sin dividirse, sobre grupos completos de -notas. Este comportamiento se puede modificar para que las barras -se subdividan en subgrupos mediante el establecimiento de la -propiedad @code{subdivideBeams}. Cuando está establecida, las -diversas barras se subdividen a intervalos definidos por el valor -actual de la longitud del pulso @code{beatLength} reduciendo las -barras múltiples a una sola entre los subgrupos. Observe que el -valor predeterminado de @code{beatLength} es de una negra si no -está establecido explícitamente. Se debe establecer al valor de -una fracción que da la duración el subgrupo de barras utilizando -la función @code{make-moment}, como se muestra aquí: - -" - doctitlees = "Subdivisión de las barras de semicorchea" - - texidoc = " -The beams of consecutive 16th (or shorter) notes are, by default, not -sub-divided. That is, the three (or more) beams stretch unbroken over -entire groups of notes. This behavior can be modified to sub-divide -the beams into sub-groups by setting the property -@code{subdivideBeams}. When set, multiple beams will be sub-divided at -intervals defined by the current value of @code{beatLength} by reducing -the multiple beams to just one beam between the sub-groups. Note that -@code{beatLength} defaults to one over the denominator of the current -time signature if not set explicitly. It must be set to a fraction -giving the duration of the beam sub-group using the @code{make-moment} -function, as shown here: - - - -" - doctitle = "Sub-dividing beams" -} % begin verbatim - -\relative c'' { - c32[ c c c c c c c] - \set subdivideBeams = ##t - c32[ c c c c c c c] - - % Set beam sub-group length to an eighth note - \set beatLength = #(ly:make-moment 1 8) - c32[ c c c c c c c] - - % Set beam sub-group length to a sixteenth note - \set beatLength = #(ly:make-moment 1 16) - c32[ c c c c c c c] -} -