]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/sub-dividing-beams.ly
Merge commit 'origin' into systems-per-page
[lilypond.git] / input / lsr / sub-dividing-beams.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.13.1"
4
5 \header {
6   lsrtags = "rhythms"
7
8   texidoces = "
9 Las barras de semicorcheas (o notas más breves) seguidas no se
10 subdividen de forma predeterminada.  Esto es: las tres (o más)
11 barras se prolongan, sin dividirse, sobre grupos completos de
12 notas.  Este comportamiento se puede modificar para que las barras
13 se subdividan en subgrupos mediante el establecimiento de la
14 propiedad @code{subdivideBeams}.  Cuando está establecida, las
15 diversas barras se subdividen a intervalos definidos por el valor
16 actual de la longitud del pulso @code{beatLength} reduciendo las
17 barras múltiples a una sola entre los subgrupos.  Observe que el
18 valor predeterminado de @code{beatLength} es de una negra si no
19 está establecido explícitamente.  Se debe establecer al valor de
20 una fracción que da la duración el subgrupo de barras utilizando
21 la función @code{make-moment}, como se muestra aquí:
22
23 "
24   doctitlees = "Subdivisión de las barras de semicorchea"
25
26 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>
27   texidocde = "
28 Die Balken von aufeinanderfolgenden Sechszehnteln (oder kürzeren Notenwerten)
29 werden standardmäßig nicht unterteilt.  Dieses Verhalten kann verändert
30 werden, sodass die Balken in Untergruppen aufgeteilt werden, indem man
31 die Eigenschaft @code{subdivideBeams} verändert.  Man muss die Unterteilungsintervalle
32 als Notenbruch mit der @code{make-moment}-Funktion für @code{beatLength} angeben,
33 damit die Balken unterbrochen wird und nur ein Balken durchgezogen bleibt.  Der
34 Standardwert für @code{beatLength} ist 1 / Zähler des aktuellen Taktes.
35
36 "
37   doctitlede = "Balken in Untergruppen teilen"
38
39   texidoc = "
40 The beams of consecutive 16th (or shorter) notes are, by default, not
41 sub-divided.  That is, the three (or more) beams stretch unbroken over
42 entire groups of notes.  This behavior can be modified to sub-divide
43 the beams into sub-groups by setting the property
44 @code{subdivideBeams}. When set, multiple beams will be sub-divided at
45 intervals defined by the current value of @code{beatLength} by reducing
46 the multiple beams to just one beam between the sub-groups. Note that
47 @code{beatLength} defaults to one over the denominator of the current
48 time signature if not set explicitly. It must be set to a fraction
49 giving the duration of the beam sub-group using the @code{make-moment}
50 function, as shown here:
51
52
53
54 "
55   doctitle = "Sub-dividing beams"
56 } % begin verbatim
57
58 \relative c'' {
59   c32[ c c c c c c c]
60   \set subdivideBeams = ##t
61   c32[ c c c c c c c]
62
63   % Set beam sub-group length to an eighth note
64   \set beatLength = #(ly:make-moment 1 8)
65   c32[ c c c c c c c]
66
67   % Set beam sub-group length to a sixteenth note
68   \set beatLength = #(ly:make-moment 1 16)
69   c32[ c c c c c c c]
70 }