]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/flat-flags-and-beam-nibs.ly
MusicXML: src-dir rather than srcdir.
[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.11.64"
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   texidoc = "
60  Flat flags on lone notes and beam nibs at the ends of beamed figures
61 are both possible with a combination of @code{stemLeftBeamCount}, 
62 @code{stemRightBeamCount} and paired @code{[ ]} beam indicators.
63
64
65
66
67 For right-pointing flat flags on lone notes, use paired @code{[ ]} beam
68 indicators and set @code{stemLeftBeamCount} to zero (see Example 1).
69
70
71
72
73 For left-pointing flat flags, set @code{stemRightBeamCount} instead
74 (Example 2).
75
76
77
78
79 For right-pointing nibs at the end of a run of beamed notes, set
80 @code{stemRightBeamCount} to a positive value. And for left-pointing
81 nibs at the start of a run of beamed notes, set
82 @code{stemLeftBeamCount} instead (Example 3).
83
84
85
86
87 Sometimes it may make sense for a lone note surrounded by rests to
88 carry both a left- and right-pointing flat flag. Do this with paired
89 @code{[ ]} beam indicators alone (Example 4).  
90
91
92
93
94 (Note that @code{\\set stemLeftBeamCount}is always equivalent to 
95 @code{\\once \\set}.  In other words, the beam count settings aren't 
96 \"sticky\", so the pair of flat flags attached to the lone  @code{c'16
97 [ ]} in the last example have nothing to do with the  @code{\\set} two
98 notes prior.)
99
100
101
102
103 "
104   doctitle = "Flat flags and beam nibs"
105 } % begin verbatim
106
107 \score {
108 <<
109 % Example 1
110 \new RhythmicStaff {
111   \set stemLeftBeamCount = #0
112   c'16 [ ]
113   r8.
114 }
115
116 % Example 2
117 \new RhythmicStaff {
118   r8.
119   \set stemRightBeamCount = #0
120   c'16 [ ]
121 }
122
123 % Example 3
124 \new RhythmicStaff {
125   c'16
126   c'16
127   \set stemRightBeamCount = #2
128   c'16
129   r16
130   r16
131   \set stemLeftBeamCount = #2
132   c'16
133   c'16
134   c'16
135 }
136
137 % Example 4
138 \new RhythmicStaff {
139    c'16
140    c'16
141    \set stemRightBeamCount = #2
142    c'16
143    r16
144    c'16 [ ]
145    r16
146    \set stemLeftBeamCount = #2
147    c'16
148    c'16
149 }
150 >>
151 }