]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/flat-flags-and-beam-nibs.ly
Merge commit 'origin'
[lilypond.git] / input / lsr / flat-flags-and-beam-nibs.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  Son posibles tanto los corchetes rectos sobre notas sueltas como
10 extremos de barra sueltos en figuras unidas, con una combinación de
11 @code{stemLeftBeamCount}, @code{stemRightBeamCount} e indicadores de
12 barra @code{[ ]} emparejados.
13
14
15
16
17 Para corchetes rectos que apunten a la derecha sobre notas sueltas,
18 use indicadores de barra emparejados @code{[ ]} y establezca
19 @code{stemLeftBeamCount} a cero (véase el ejemplo 1).
20
21
22
23
24 Para corchetes rectos que apunten a la izquierda, establezca en su
25 lugar @code{stemRightBeamCount} (ejemplo 2).
26
27
28
29
30 Para extremos sueltos que apunten a la derecha al final de un conjunto
31 de notas unidas, establezca @code{stemRightBeamCount} a un valor
32 positivo.  Y para extremos sueltos que apunten a la izquierda al
33 principio de un conjunto de notas unidas, establezca
34 @code{stemLeftBeamCount} en su lugar (ejemplo 3).
35
36
37
38
39 A veces, para una nota suelta rodeada de silencios tiene sentido que
40 lleve los dos extremos sueltos del corchete plano, apuntando a derecha
41 e izquierda.  Hágalo solamente con indicadores de barra emparejados
42 @code{[ ]} (ejemplo 4).
43
44
45
46
47 (Observe que @code{\\set stemLeftBeamCount} siempre equivale a
48 @code{\\once \\set}.  En otras palabras, los ajustes de la cantidad de
49 barras no se recuerdan, y por ello el par de corchetes planos
50 aplicados a la nota Do semicorchea @code{c'16 [ ]} del último ejemplo
51 no tiene nada que ver con el @code{\\set} de dos notas por detrás.)
52
53
54
55
56 "
57   doctitlees = "Corchetes rectos y extremos de barra sueltos"
58
59
60 %% Translation of GIT committish :<0364058d18eb91836302a567c18289209d6e9706>  
61   texidocde = "
62 Gerade Fähnchen an einzelnen Noten und überstehende Balkenenden bei
63 bebalkten Notengruppen sind möglich mit einer Kombination aus
64 @code{stemLeftBeamCount}, @code{stemRightBeamCount} und Paaren von
65 @code{[]}-Balkenbegrenzungen.
66
67 Für gerade Fähnchen, die nach rechts zeigen, kann @code{[]} eingesetzt
68 werden und @code{stemLeftBeamCount} auf Null gesetzt werden (wie
69 Bsp. 1).
70
71 Für gerade Fähnchen, die nach links zeigen, muss @code{stemRightBeamCount}
72 eingesetzt werden (Bsp. 2).
73
74 Für überstehende Balkenenden nach rechts muss @code{stemRightBeamCount}
75 auf einen positiven Wert gesetzt werden, für Balkenenden, die nach links
76 zeigen benutzt man @code{stemLeftBeamCount} (Bsp. 3).
77
78 Manchmal können einzelne Noten, die von Pausen umgeben sind, auch Balkenenden
79 in beide Richtungen tragen.  Das geschieht mit @code{[]}-Klammern (Bsp. 4).
80
81 (@code{\\set stemLeftBeamCount} entspricht immer dem Befehl
82 @code{\\once \\set}.  Anders gesagt müssen die Einstellungen immer wieder
83 wiederholt werden und die Fähnchen des letzten Sechszehntels im letzten
84 Beispiel haben nichts mit dem @code{\\set}-Befehl zwei Noten vorher zu tun.)
85
86 "
87   doctitlede = "Gerade Fähnchen und überstehende Balkenenden"
88
89   texidoc = "
90  Flat flags on lone notes and beam nibs at the ends of beamed figures
91 are both possible with a combination of @code{stemLeftBeamCount}, 
92 @code{stemRightBeamCount} and paired @code{[]} beam indicators.
93
94
95
96
97 For right-pointing flat flags on lone notes, use paired @code{[]} beam
98 indicators and set @code{stemLeftBeamCount} to zero (see Example 1).
99
100
101
102
103 For left-pointing flat flags, set @code{stemRightBeamCount} instead
104 (Example 2).
105
106
107
108
109 For right-pointing nibs at the end of a run of beamed notes, set
110 @code{stemRightBeamCount} to a positive value. And for left-pointing
111 nibs at the start of a run of beamed notes, set
112 @code{stemLeftBeamCount} instead (Example 3).
113
114
115
116
117 Sometimes it may make sense for a lone note surrounded by rests to
118 carry both a left- and right-pointing flat flag. Do this with paired
119 @code{[]} beam indicators alone (Example 4).  
120
121
122
123
124 (Note that @code{\\set stemLeftBeamCount} is always equivalent to 
125 @code{\\once \\set}.  In other words, the beam count settings are not 
126 \"sticky\", so the pair of flat flags attached to the lone 
127 @code{c'16[]} in the last example have nothing to do with the 
128 @code{\\set} two notes prior.)
129
130
131
132
133 "
134   doctitle = "Flat flags and beam nibs"
135 } % begin verbatim
136
137 \score {
138   <<
139     % Example 1
140     \new RhythmicStaff {
141       \set stemLeftBeamCount = #0
142       c16[]
143       r8.
144     }
145     
146     % Example 2
147     \new RhythmicStaff {
148       r8.
149       \set stemRightBeamCount = #0
150       c16[]
151     }
152     
153     % Example 3
154     \new RhythmicStaff {
155       c16 c
156       \set stemRightBeamCount = #2
157       c16 r r
158       \set stemLeftBeamCount = #2
159       c16 c c
160     }
161     
162     % Example 4
163     \new RhythmicStaff {
164       c16 c
165       \set stemRightBeamCount = #2
166       c16 r
167       c16[]
168       r16
169       \set stemLeftBeamCount = #2
170       c16 c
171     }
172   >>
173 }