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