]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/flat-flags-and-beam-nibs.ly
Merge branch 'master' of carldsorensen@git.sv.gnu.org:/srv/git/lilypond into ralph
[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.12.0"
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 are not 
96 \"sticky\", so the pair of flat flags attached to the lone 
97 @code{c'16[]} in the last example have nothing to do with the 
98 @code{\\set} two 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       c16[]
113       r8.
114     }
115     
116     % Example 2
117     \new RhythmicStaff {
118       r8.
119       \set stemRightBeamCount = #0
120       c16[]
121     }
122     
123     % Example 3
124     \new RhythmicStaff {
125       c16 c
126       \set stemRightBeamCount = #2
127       c16 r r
128       \set stemLeftBeamCount = #2
129       c16 c c
130     }
131     
132     % Example 4
133     \new RhythmicStaff {
134       c16 c
135       \set stemRightBeamCount = #2
136       c16 r
137       c16[]
138       r16
139       \set stemLeftBeamCount = #2
140       c16 c
141     }
142   >>
143 }