]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/user/macros.itexi
Merge branch 'master' into nested-bookparts
[lilypond.git] / Documentation / es / user / macros.itexi
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: 470afe4ab29825194827f7dfcf031addb68771ce
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  See TRANSLATION for details.
7 @end ignore
8
9 @include version.itexi
10
11 @c don't replace quotes with directed quotes
12 @set txicodequoteundirected
13 @set txicodequotebacktick
14
15 @c   ***** Displaying text *****
16
17 @c we need this since @q{\} doesn't work with makeinfo 4.11 --
18 @c say @q{@bs{}} instead
19 @macro bs
20 \\
21 @end macro
22
23 @c to get decent quotes in `foo' and ``foo''
24 @macro q{TEXT}
25 @quoteleft{}\TEXT\@quoteright{}
26 @end macro
27
28 @macro qq{TEXT}
29 @quotedblleft{}\TEXT\@quotedblright{}
30 @end macro
31
32 @ifhtml
33 @macro warning{TEXT}
34 @cartouche
35 @b{Nota:} \TEXT\
36 @end cartouche
37 @end macro
38 @end ifhtml
39
40 @ifnothtml
41 @macro warning{TEXT}
42 @quotation
43 @quotation
44 @cartouche
45 @b{Nota:} \TEXT\
46 @end cartouche
47 @end quotation
48 @end quotation
49 @end macro
50 @end ifnothtml
51
52 @ifnotinfo
53 @macro notation{TEXT}
54 @var{\TEXT\}
55 @end macro
56 @end ifnotinfo
57
58 @ifinfo
59 @macro notation{TEXT}
60 \TEXT\
61 @end macro
62 @end ifinfo
63
64 @macro smallspace
65 @sp 1
66 @end macro
67
68
69 @c   **** Displaying images not generated by lilypond-book
70
71 @c current installation setup of Info docs requires that all images are
72 @c expected to be found in lilypond/ subdirectory.  lilypond-book already
73 @c generates proper @image commands for images of music; these macros
74 @c definitions do the same for other images.
75
76 @ifnotinfo
77 @macro sourceimage{FILENAME,WIDTH,HEIGHT,ALTTEXT}
78 @image{\FILENAME\,\WIDTH\,\HEIGHT\,\ALTTEXT\}
79 @end macro
80 @end ifnotinfo
81
82 @ifinfo
83 @macro sourceimage{FILENAME,WIDTH,HEIGHT,ALTTEXT}
84 @image{lilypond/\FILENAME\,\WIDTH\,\HEIGHT\,\ALTTEXT\}
85 @end macro
86 @end ifinfo
87
88
89 @c   **** Headings in a doc subsection ****
90
91 @macro predefined
92 @noindent
93 @subsubheading Instrucciones predefinidas
94
95 @end macro
96
97 @macro snippets
98 @noindent
99 @subsubheading Fragmentos de código seleccionados
100
101 @end macro
102
103 @c * Deprecated: not in English macros.itexi *
104 @macro commonprop
105 @noindent
106 @subsubheading Propiedades trucadas frecuentemente
107
108 @end macro
109
110 @macro seealso
111 @noindent
112 @subsubheading Véase también
113
114 @indent
115 @end macro
116
117 @macro knownissues
118 @noindent
119 @subsubheading Advertencias y problemas conocidos
120
121 @end macro
122
123 @macro lydoctitle {TEXT}
124 @emph{\TEXT\}
125
126 @end macro
127
128 @macro funindex {TEXT}
129 @findex \TEXT\
130 @kindex \TEXT\
131 @end macro
132
133
134
135 @c   **** Links and references ****
136
137 @c  Definitions for references:
138 @c     @rglos
139 @c     @rlearning
140 @c     @ruser
141 @c     @rprogram
142 @c     @rlsr
143 @c     @rinternals
144 @c  all these also have a @...named version, which allows to specify the
145 @c  displayed text for the reference as second argument
146
147 @c ***** HTML + bigpage is a special case (other manual names), all other
148 @c formats are treated similarly
149
150 @ifnottex
151
152 @ifset bigpage
153
154 @macro rglos{TEXT}
155 @vindex \TEXT\
156 @ref{\TEXT\,,,music-glossary-big-page,Glosario Musical}
157 @end macro
158
159 @macro rglosnamed{TEXT,DISPLAY}
160 @vindex \TEXT\
161 @ref{\TEXT\,,\DISPLAY\,music-glossary-big-page,Glosario Musical}
162 @end macro
163
164 @macro rlearning{TEXT}
165 @vindex \TEXT\
166 @ref{\TEXT\,,,lilypond-learning-big-page,Manual de Aprendizaje}
167 @end macro
168
169 @macro rlearningnamed{TEXT,DISPLAY}
170 @vindex \TEXT\
171 @ref{\TEXT\,,\DISPLAY\,lilypond-learning-big-page,Manual de Aprendizaje}
172 @end macro
173
174 @macro ruser{TEXT}
175 @vindex \TEXT\
176 @ref{\TEXT\,,,lilypond-big-page,Referencia de la Notación}
177 @end macro
178
179 @macro rusernamed{TEXT,DISPLAY}
180 @vindex \TEXT\
181 @ref{\TEXT\,,\DISPLAY\,lilypond-big-page,Referencia de la Notación}
182 @end macro
183
184 @macro rprogram{TEXT}
185 @vindex \TEXT\
186 @ref{\TEXT\,,,lilypond-program-big-page,Utilización del Programa}
187 @end macro
188
189 @macro rprogramnamed{TEXT,DISPLAY}
190 @vindex \TEXT\
191 @ref{\TEXT\,,\DISPLAY\,lilypond-program-big-page,Utilización del Programa}
192 @end macro
193
194 @macro rlsr{TEXT}
195 @ref{\TEXT\,,,lilypond-snippets-big-page,Fragmentos de código}
196 @end macro
197
198 @macro rlsrnamed{TEXT,DISPLAY}
199 @ref{\TEXT\,,\DISPLAY\,lilypond-snippets-big-page,Fragmentos de código}
200 @end macro
201
202 @macro rinternals{TEXT}
203 @vindex \TEXT\
204 @ref{\TEXT\,,,lilypond-internals-big-page,Referencia de Funcionamiento Interno}
205 @end macro
206
207 @macro rinternalsnamed{TEXT,DISPLAY}
208 @vindex \TEXT\
209 @ref{\TEXT\,,\DISPLAY\,lilypond-internals-big-page,Referencia de Funcionamiento Interno}
210 @end macro
211
212 @end ifset
213
214
215 @ifclear bigpage
216
217 @macro rglos{TEXT}
218 @vindex \TEXT\
219 @ref{\TEXT\,,,music-glossary,Glosario Musical}
220 @end macro
221
222 @macro rglosnamed{TEXT,DISPLAY}
223 @vindex \TEXT\
224 @ref{\TEXT\,,\DISPLAY\,music-glossary,Glosario Musical}
225 @end macro
226
227 @macro rlearning{TEXT}
228 @vindex \TEXT\
229 @ref{\TEXT\,,,lilypond-learning,Manual de Aprendizaje}
230 @end macro
231
232 @macro rlearningnamed{TEXT,DISPLAY}
233 @vindex \TEXT\
234 @ref{\TEXT\,,\DISPLAY\,lilypond-learning,Manual de Aprendizaje}
235 @end macro
236
237 @macro ruser{TEXT}
238 @vindex \TEXT\
239 @ref{\TEXT\,,,lilypond,Referencia de la Notación}
240 @end macro
241
242 @macro rusernamed{TEXT,DISPLAY}
243 @vindex \TEXT\
244 @ref{\TEXT\,,\DISPLAY\,lilypond,Referencia de la Notación}
245 @end macro
246
247 @macro rprogram{TEXT}
248 @vindex \TEXT\
249 @ref{\TEXT\,,,lilypond-program,Utilización del Programa}
250 @end macro
251
252 @macro rprogramnamed{TEXT,DISPLAY}
253 @vindex \TEXT\
254 @ref{\TEXT\,,\DISPLAY\,lilypond-program,Utilización del Programa}
255 @end macro
256
257 @macro rlsr{TEXT}
258 @ref{\TEXT\,,,lilypond-snippets,Fragmentos de código}
259 @end macro
260
261 @macro rlsrnamed{TEXT,DISPLAY}
262 @ref{\TEXT\,,\DISPLAY\,lilypond-snippets,Fragmentos de código}
263 @end macro
264
265 @macro rinternals{TEXT}
266 @vindex \TEXT\
267 @ref{\TEXT\,,,lilypond-internals,Referencia de Funcionamiento Interno}
268 @end macro
269
270 @macro rinternalsnamed{TEXT,DISPLAY}
271 @vindex \TEXT\
272 @ref{\TEXT\,,\DISPLAY\,lilypond-internals,Referencia de Funcionamiento Interno}
273 @end macro
274
275 @end ifclear
276
277 @end ifnottex
278
279
280 @c **** TEX ****
281 @iftex
282
283 @macro rglos{TEXT}
284 @vindex \TEXT\
285 @ref{\TEXT\,,,music-glossary,Glosario Musical}
286 @end macro
287
288 @macro rglosnamed{TEXT,DISPLAY}
289 @vindex \TEXT\
290 @ref{\TEXT\,,\DISPLAY\,music-glossary,Glosario Musical}
291 @end macro
292
293 @macro rlearning{TEXT}
294 @vindex \TEXT\
295 @ref{\TEXT\,,,lilypond-learning.es,Manual de Aprendizaje}
296 @end macro
297
298 @macro rlearningnamed{TEXT,DISPLAY}
299 @vindex \TEXT\
300 @ref{\TEXT\,,\DISPLAY\,lilypond-learning.es,Manual de Aprendizaje}
301 @end macro
302
303 @macro ruser{TEXT}
304 @vindex \TEXT\
305 @ref{\TEXT\,,,lilypond.es,Referencia de la Notación}
306 @end macro
307
308 @macro rusernamed{TEXT,DISPLAY}
309 @vindex \TEXT\
310 @ref{\TEXT\,,\DISPLAY\,lilypond.es,Referencia de la Notación}
311 @end macro
312
313 @macro rprogram{TEXT}
314 @vindex \TEXT\
315 @ref{\TEXT\,,,lilypond-program.es,Utilización del Programa}
316 @end macro
317
318 @macro rprogramnamed{TEXT,DISPLAY}
319 @vindex \TEXT\
320 @ref{\TEXT\,,\DISPLAY\,lilypond-program.es,Utilización del Programa}
321 @end macro
322
323 @macro rlsr{TEXT}
324 @ref{\TEXT\,,,lilypond-snippets,Fragmentos de código}
325 @end macro
326
327 @macro rlsrnamed{TEXT,DISPLAY}
328 @ref{\TEXT\,,\DISPLAY\,lilypond-snippets,Fragmentos de código}
329 @end macro
330
331 @macro rinternals{TEXT}
332 @vindex \TEXT\
333 @ref{\TEXT\,,,lilypond-internals,Referencia de Funcionamiento Interno}
334 @end macro
335
336 @macro rinternalsnamed{TEXT,DISPLAY}
337 @vindex \TEXT\
338 @ref{\TEXT\,,\DISPLAY\,lilypond-internals,Referencia de Funcionamiento Interno}
339 @end macro
340
341 @end iftex
342
343
344 @c **** Macros specific to translated docs ****
345
346 @c ugh, cannot set/define global variable 'translationof' in some way?
347 @iftex
348 @macro translationof{TEXT}
349 @end macro
350 @end iftex
351
352 @ifinfo
353 @macro
354 @macro translationof{TEXT}
355 @set translationof \TEXT\
356 @end macro
357 @end ifinfo
358
359 @c TODO when @translationof is used in translated docs
360 @c see if it's feasible to say @value{translationof}
361 @macro englishref
362 Esta sección aún no está traducida; consulte el manual en inglés.
363 @end macro
364
365 @ifhtml
366 @macro untranslated
367 UNTRANSLATED NODE: IGNORE ME
368 @end macro
369 @end ifhtml
370
371 @ifnothtml
372 @macro untranslated
373 @end macro
374 @end ifnothtml