]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/sub-dividing-beams.ly
Doc: Update LSR.
[lilypond.git] / Documentation / snippets / sub-dividing-beams.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.16"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: d2119a9e5e951c6ae850322f41444ac98d1ed492
10   texidoces = "
11 Las barras de semicorcheas (o notas más breves) seguidas no se
12 subdividen de forma predeterminada.  Esto es: las tres (o más)
13 barras se prolongan, sin dividirse, sobre grupos completos de
14 notas.  Este comportamiento se puede modificar para que las barras
15 se subdividan en subgrupos mediante el establecimiento de la
16 propiedad @code{subdivideBeams}.  Cuando está establecida, las
17 diversas barras se subdividen a intervalos definidos por el valor
18 actual de la longitud del pulso @code{beatLength} reduciendo las
19 barras múltiples a una sola entre los subgrupos.  Observe que el
20 valor predeterminado de @code{beatLength} es de una unidad sobre
21 el denominador del compás en curso, si no está establecido
22 explícitamente.  Se debe establecer al valor de una fracción que
23 da la duración el subgrupo de barras utilizando la función
24 @code{ly:make-moment}, como se muestra aquí:
25
26 "
27   doctitlees = "Subdivisión de las barras de semicorchea"
28
29 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
30   texidocde = "
31 Die Balken von aufeinanderfolgenden Sechszehnteln (oder kürzeren Notenwerten)
32 werden standardmäßig nicht unterteilt.  Dieses Verhalten kann verändert
33 werden, sodass die Balken in Untergruppen aufgeteilt werden, indem man
34 die Eigenschaft @code{subdivideBeams} verändert.  Man muss die Unterteilungsintervalle
35 als Notenbruch mit der @code{make-moment}-Funktion für @code{beatLength} angeben,
36 damit die Balken unterbrochen wird und nur ein Balken durchgezogen bleibt.  Der
37 Standardwert für @code{beatLength} ist 1 / Zähler des aktuellen Taktes.
38
39 "
40   doctitlede = "Balken in Untergruppen teilen"
41
42
43 %% Translation of GIT committish: 708e0d9c660856b19929736ca18a6f9d68539c60
44   texidocfr = "
45 Les ligatures d'une succession de notes de durée inférieure à la croche
46 ne sont pas subdivisées par défaut.  Autrement dit, tous les traits de
47 ligature seront continus.  Ce comportement peut être modifié afin de
48 diviser la ligature en sous-groupes grâce à la propriété
49 @code{subdivideBeams}.  Lorsqu'elle est activée, les ligatures seront
50 subdivisées selon un intervalle défini par @code{beatLength} ; il n'y
51 aura alors plus qu'un seul trait de ligature entre chaque sous-groupe.
52 Par défaut, @code{beatLength} fixe la valeur de référence à une noire.
53 Il faudra donc lui fournir, à l'aide de la fonction @code{make-moment},
54 une fraction correspondant au sous-groupe désiré, comme dans l'exemple
55 suivant.
56
57 "
58   doctitlefr = "Subdivision des ligatures"
59
60   texidoc = "
61 The beams of consecutive 16th (or shorter) notes are, by default, not
62 sub-divided.  That is, the three (or more) beams stretch unbroken over
63 entire groups of notes.  This behavior can be modified to sub-divide
64 the beams into sub-groups by setting the property
65 @code{subdivideBeams}. When set, multiple beams will be sub-divided at
66 intervals defined by the current value of @code{beatLength} by reducing
67 the multiple beams to just one beam between the sub-groups. Note that
68 @code{beatLength} defaults to one over the denominator of the current
69 time signature if not set explicitly. It must be set to a fraction
70 giving the duration of the beam sub-group using the
71 @code{ly:make-moment} function, as shown here:
72
73
74
75 "
76   doctitle = "Sub-dividing beams"
77 } % begin verbatim
78
79 \relative c'' {
80   c32[ c c c c c c c]
81   \set subdivideBeams = ##t
82   c32[ c c c c c c c]
83
84   % Set beam sub-group length to an eighth note
85   \set beatLength = #(ly:make-moment 1 8)
86   c32[ c c c c c c c]
87
88   % Set beam sub-group length to a sixteenth note
89   \set beatLength = #(ly:make-moment 1 16)
90   c32[ c c c c c c c]
91 }
92