]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/sub-dividing-beams.ly
Doc-de: translating snippets and correcting German assignment
[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.20"
5
6 \header {
7   lsrtags = "rhythms"
8
9 %% Translation of GIT committish: e0aa246e0ed1a86dc41a99ab79bff822d3320aa7
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
30 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
31   texidocde = "
32 Die Balken von aufeinanderfolgenden Sechszehnteln (oder kürzeren Notenwerten)
33 werden standardmäßig nicht unterteilt.  Dieses Verhalten kann verändert
34 werden, sodass die Balken in Untergruppen aufgeteilt werden, indem man
35 die Eigenschaft @code{subdivideBeams} verändert.  Man muss die Unterteilungsintervalle
36 als Notenbruch mit der @code{make-moment}-Funktion für @code{beatLength} angeben,
37 damit die Balken unterbrochen wird und nur ein Balken durchgezogen bleibt.  Der
38 Standardwert für @code{beatLength} ist 1 / Zähler des aktuellen Taktes.
39
40 "
41   doctitlede = "Balken in Untergruppen teilen"
42
43
44
45 %% Translation of GIT committish: 708e0d9c660856b19929736ca18a6f9d68539c60
46   texidocfr = "
47 Les ligatures d'une succession de notes de durée inférieure à la croche
48 ne sont pas subdivisées par défaut.  Autrement dit, tous les traits de
49 ligature seront continus.  Ce comportement peut être modifié afin de
50 diviser la ligature en sous-groupes grâce à la propriété
51 @code{subdivideBeams}.  Lorsqu'elle est activée, les ligatures seront
52 subdivisées selon un intervalle défini par @code{beatLength} ; il n'y
53 aura alors plus qu'un seul trait de ligature entre chaque sous-groupe.
54 Par défaut, @code{beatLength} fixe la valeur de référence à une noire.
55 Il faudra donc lui fournir, à l'aide de la fonction @code{make-moment},
56 une fraction correspondant au sous-groupe désiré, comme dans l'exemple
57 suivant.
58
59 "
60   doctitlefr = "Subdivision des ligatures"
61
62   texidoc = "
63 The beams of consecutive 16th (or shorter) notes are, by default, not
64 sub-divided.  That is, the three (or more) beams stretch unbroken over
65 entire groups of notes.  This behavior can be modified to sub-divide
66 the beams into sub-groups by setting the property
67 @code{subdivideBeams}. When set, multiple beams will be sub-divided at
68 intervals defined by the current value of @code{beatLength} by reducing
69 the multiple beams to just one beam between the sub-groups. Note that
70 @code{beatLength} defaults to one over the denominator of the current
71 time signature if not set explicitly. It must be set to a fraction
72 giving the duration of the beam sub-group using the
73 @code{ly:make-moment} function, as shown here:
74
75
76
77 "
78   doctitle = "Sub-dividing beams"
79 } % begin verbatim
80
81 \relative c'' {
82   c32[ c c c c c c c]
83   \set subdivideBeams = ##t
84   c32[ c c c c c c c]
85
86   % Set beam sub-group length to an eighth note
87   \set beatLength = #(ly:make-moment 1 8)
88   c32[ c c c c c c c]
89
90   % Set beam sub-group length to a sixteenth note
91   \set beatLength = #(ly:make-moment 1 16)
92   c32[ c c c c c c c]
93 }
94