]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/user/notation-appendices.itely
Fix `make web'
[lilypond.git] / Documentation / es / user / notation-appendices.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: c5692ebfd28493444a1669cd550b2430bb2ba29a
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @c \version "2.11.51"
11
12 @node Notation manual tables
13 @appendix Notation manual tables
14
15 @menu
16 * Chord name chart::
17 * Common chord modifiers::
18 * Predefined fretboard diagrams::
19 * MIDI instruments::
20 * List of colors::
21 * The Feta font::
22 * Note head styles::
23 * Text markup commands::
24 * Text markup list commands::
25 * List of articulations::
26 * Percussion notes::
27 * All context properties::
28 * Layout properties::
29 * Identifiers::
30 * Scheme functions::
31 @end menu
32
33
34
35 @node Chord name chart
36 @appendixsec Chord name chart
37
38 Las siguientes tablas muestran dos sistemas estándar para imprimir los nombres de los acordes,
39 junto a las notas que representan.
40
41 @lilypondfile{chord-names-jazz.ly}
42
43 @node Common chord modifiers
44 @appendixsec Common chord modifiers
45
46 La tabla siguiente presenta los modificadores de acorde que se pueden
47 usar en el modo de acordes @code{\chordmode} para generar las
48 estructuras de acordes estándar.
49
50 @multitable @columnfractions .2 .3 .2 .2
51
52 @item
53 @b{Tipo de acorde}
54 @tab
55 @b{Intervalos}
56 @tab
57 @b{Modificador(es)}
58 @tab
59 @b{Ejemplo}
60
61
62 @item
63 Mayor
64 @tab
65 Tercera mayor y quinta justa
66 @tab
67 @code{5} o nada
68 @tab
69 @lilypond[line-width=3\cm,noragged-right, notime]
70 \chordmode {
71   c1:5
72 }
73 @end lilypond
74
75 @item
76 Menor
77 @tab
78 Tercera menor y quinta justa
79 @tab
80 @code{m} o @code{m5}
81 @tab
82 @lilypond[line-width=3\cm,noragged-right, notime]
83 \chordmode {
84   c1:m
85 }
86 @end lilypond
87
88 @item
89 Aumentado
90 @tab
91 Tercera mayor y quinta aumentada
92 @tab
93 @code{aug}
94 @tab
95 @lilypond[line-width=3\cm,noragged-right, notime]
96 \chordmode {
97   c1:aug
98 }
99 @end lilypond
100
101 @item
102 Disminuido
103 @tab
104 Tercera menor y quinta disminuida
105 @tab
106 @code{dim}
107 @tab
108 @lilypond[line-width=3\cm,noragged-right, notime]
109 \chordmode {
110   c1:dim
111 }
112 @end lilypond
113
114 @item
115 Séptima dominante
116 @tab
117 Tríada mayor con séptima menor
118 @tab
119 @code{7}
120 @tab
121 @lilypond[line-width=3\cm,noragged-right, notime]
122 \chordmode {
123   c1:7
124 }
125 @end lilypond
126
127 @item
128 Séptima mayor
129 @tab
130 Tríada mayor y séptima mayor
131 @tab
132 @code{maj7} or @code{maj}
133 @tab
134 @lilypond[line-width=3\cm,noragged-right, notime]
135 \chordmode {
136   c1:maj7
137 }
138 @end lilypond
139
140 @item
141 Séptima menor
142 @tab
143 Tríada menor y séptima menor
144 @tab
145 @code{m7}
146 @tab
147 @lilypond[line-width=3\cm,noragged-right, notime]
148 \chordmode {
149   c1:m7
150 }
151 @end lilypond
152
153 @item
154 Séptima disminuida
155 @tab
156 Tríada disminuida y séptima disminuida
157 @tab
158 @code{dim7}
159 @tab
160 @lilypond[line-width=3\cm,noragged-right, notime]
161 \chordmode {
162   c1:dim7
163 }
164 @end lilypond
165
166 @item
167 Aumentado con séptima
168 @tab
169 Tríada aumentada y séptima menor
170 @tab
171 @code{aug7}
172 @tab
173 @lilypond[line-width=3\cm,noragged-right, notime]
174 \chordmode {
175   c1:aug7
176 }
177 @end lilypond
178
179 @item
180 Séptima semi-disminuido
181 @tab
182 Tríada disminuida y séptima menor
183 @tab
184 @code{dim5m7}
185 @tab
186 @lilypond[line-width=3\cm,noragged-right, notime]
187 \chordmode {
188   c1:dim5m7
189 }
190 @end lilypond
191
192 @item
193 Menor con séptima mayor
194 @tab
195 Tríada menor con séptima mayor
196 @tab
197 @code{7m5}
198 @tab
199 @lilypond[line-width=3\cm,noragged-right, notime]
200 \chordmode {
201   c1:7m5
202 }
203 @end lilypond
204
205 @item
206 Mayor con sexta
207 @tab
208 Tríada mayor y sexta
209 @tab
210 @code{6}
211 @tab
212 @lilypond[line-width=3\cm,noragged-right, notime]
213 \chordmode {
214   c1:6
215 }
216 @end lilypond
217
218 @item
219 Menor con sexta
220 @tab
221 Tríada menor y sexta
222 @tab
223 @code{m6}
224 @tab
225 @lilypond[line-width=3\cm,noragged-right, notime]
226 \chordmode {
227   c1:m6
228 }
229 @end lilypond
230
231 @item
232 Novena dominante
233 @tab
234 Séptima dominante con novena mayor
235 @tab
236 @code{9}
237 @tab
238 @lilypond[line-width=3\cm,noragged-right, notime]
239 \chordmode {
240   c1:9
241 }
242 @end lilypond
243
244 @item
245 Novena mayor
246 @tab
247 HACER
248 @tab
249 @code{maj9}
250 @tab
251 @lilypond[line-width=3\cm,noragged-right, notime]
252 \chordmode {
253   c1:maj9
254 }
255 @end lilypond
256
257 @item
258 Menor con novena
259 @tab
260 HACER
261 @tab
262 @code{m9}
263 @tab
264 @lilypond[line-width=3\cm,noragged-right, notime]
265 \chordmode {
266   c1:m9
267 }
268 @end lilypond
269
270 @item
271 Oncena dominante
272 @tab
273 Novena dominante con oncena justa
274 @tab
275 @code{11}
276 @tab
277 @lilypond[line-width=3\cm,noragged-right, notime]
278 \chordmode {
279   c1:11
280 }
281 @end lilypond
282
283 @item
284 Oncena mayor
285 @tab
286 HACER
287 @tab
288 @code{maj11}
289 @tab
290 @lilypond[line-width=3\cm,noragged-right, notime]
291 \chordmode {
292   c1:maj11
293 }
294 @end lilypond
295
296 @item
297 Menor con oncena
298 @tab
299 HACER
300 @tab
301 @code{m11}
302 @tab
303 @lilypond[line-width=3\cm,noragged-right, notime]
304 \chordmode {
305   c1:m11
306 }
307 @end lilypond
308
309 @item
310 Trecena dominante
311 @tab
312 Oncena dominante y trecena mayor
313 @tab
314 @code{13.11}
315 @tab
316 @lilypond[line-width=3\cm,noragged-right, notime]
317 \chordmode {
318   c1:13.11
319 }
320 @end lilypond
321
322 @item
323 Mayor con trecena
324 @tab
325 HACER
326 @tab
327 @code{maj13.11}
328 @tab
329 @lilypond[line-width=3\cm,noragged-right, notime]
330 \chordmode {
331   c1:maj13.11
332 }
333 @end lilypond
334
335 @item
336 Menor con trecena
337 @tab
338 HACER
339 @tab
340 @code{m13.11}
341 @tab
342 @lilypond[line-width=3\cm,noragged-right, notime]
343 \chordmode {
344   c1:m13.11
345 }
346 @end lilypond
347
348 @item
349 Segunda suspendida
350 @tab
351 HACER
352 @tab
353 @code{sus2}
354 @tab
355 @lilypond[line-width=3\cm,noragged-right, notime]
356 \chordmode {
357   c1:sus2
358 }
359 @end lilypond
360
361 @item
362 Cuarta suspendida
363 @tab
364 HACER
365 @tab
366 @code{sus4}
367 @tab
368 @lilypond[line-width=3\cm,noragged-right, notime]
369 \chordmode {
370   c1:sus4
371 }
372 @end lilypond
373
374
375 @end multitable
376
377 @node Predefined fretboard diagrams
378 @appendixsec Predefined fretboard diagrams
379
380 El cuadro siguiente presenta los diagramas de traste predefinidos.
381
382 @lilypondfile{display-predefined-fretboards.ly}
383
384
385 @node MIDI instruments
386 @appendixsec MIDI instruments
387
388 A continuación figura una lista con los nombres que se pueden utilizar para la
389 propiedad @code{midiInstrument} (instrumento MIDI).
390
391 @example
392 acoustic grand            contrabass           lead 7 (fifths)
393 bright acoustic           tremolo strings      lead 8 (bass+lead)
394 electric grand            pizzicato strings    pad 1 (new age)
395 honky-tonk                orchestral strings   pad 2 (warm)
396 electric piano 1          timpani              pad 3 (polysynth)
397 electric piano 2          string ensemble 1    pad 4 (choir)
398 harpsichord               string ensemble 2    pad 5 (bowed)
399 clav                      synthstrings 1       pad 6 (metallic)
400 celesta                   synthstrings 2       pad 7 (halo)
401 glockenspiel              choir aahs           pad 8 (sweep)
402 music box                 voice oohs           fx 1 (rain)
403 vibraphone                synth voice          fx 2 (soundtrack)
404 marimba                   orchestra hit        fx 3 (crystal)
405 xylophone                 trumpet              fx 4 (atmosphere)
406 tubular bells             trombone             fx 5 (brightness)
407 dulcimer                  tuba                 fx 6 (goblins)
408 drawbar organ             muted trumpet        fx 7 (echoes)
409 percussive organ          french horn          fx 8 (sci-fi)
410 rock organ                brass section        sitar
411 church organ              synthbrass 1         banjo
412 reed organ                synthbrass 2         shamisen
413 accordion                 soprano sax          koto
414 harmonica                 alto sax             kalimba
415 concertina                tenor sax            bagpipe
416 acoustic guitar (nylon)   baritone sax         fiddle
417 acoustic guitar (steel)   oboe                 shanai
418 electric guitar (jazz)    english horn         tinkle bell
419 electric guitar (clean)   bassoon              agogo
420 electric guitar (muted)   clarinet             steel drums
421 overdriven guitar         piccolo              woodblock
422 distorted guitar          flute                taiko drum
423 guitar harmonics          recorder             melodic tom
424 acoustic bass             pan flute            synth drum
425 electric bass (finger)    blown bottle         reverse cymbal
426 electric bass (pick)      shakuhachi           guitar fret noise
427 fretless bass             whistle              breath noise
428 slap bass 1               ocarina              seashore
429 slap bass 2               lead 1 (square)      bird tweet
430 synth bass 1              lead 2 (sawtooth)    telephone ring
431 synth bass 2              lead 3 (calliope)    helicopter
432 violin                    lead 4 (chiff)       applause
433 viola                     lead 5 (charang)     gunshot
434 cello                     lead 6 (voice)
435 @end example
436
437
438 @node List of colors
439 @appendixsec List of colors
440
441 @subsubheading Normal colors
442
443 La sintaxis para el uso de colores se encuentra detallada en @ref{Coloring objects}.
444
445 @cindex lista de colores
446 @cindex colores, lista de
447
448 @verbatim
449 black       white          red         green
450 blue        cyan           magenta     yellow
451 grey        darkred        darkgreen   darkblue
452 darkcyan    darkmagenta    darkyellow
453 @end verbatim
454
455
456 @subsubheading X color names
457
458 Los nombres de los colores de X admiten algunas variantes:
459
460 Un nombre que se escribe como una palabra única con mayúsculas
461 intercaladas (p.ej. @q{LightSlateBlue}) se puede escribir también como
462 palabras separadas por espacios y sin mayúsculas (p.ej. @q{light slate
463 blue}).
464
465 La palabra @q{grey} siempre se puede escribir como @q{gray} (p.ej. @q{DarkSlateGray}).
466
467 Algunos nombres admiten un sufijo numérico (p.ej. @q{LightSalmon4}).
468
469
470 @subsubheading Color Names without a numerical suffix:
471
472 @verbatim
473 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
474 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
475 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
476 ivory           LemonChiffon    seashell        honeydew        MintCream
477 azure           AliceBlue       lavender        LavenderBlush   MistyRose
478 white           black           DarkSlateGrey   DimGrey         SlateGrey
479 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
480 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
481 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
482 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
483 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
484 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
485 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
486 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
487 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
488 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
489 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
490 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
491 SaddleBrown     sienna          peru            burlywood       beige
492 wheat           SandyBrown      tan             chocolate       firebrick
493 brown           DarkSalmon      salmon          LightSalmon     orange
494 DarkOrange      coral           LightCoral      tomato          OrangeRed
495 red             HotPink         DeepPink        pink            LightPink
496 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
497 violet          plum            orchid          MediumOrchid    DarkOrchid
498 DarkViolet      BlueViolet      purple          MediumPurple    thistle
499 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
500 LightGreen
501 @end verbatim
502
503
504 @subsubheading Color names with a numerical suffix
505
506 En los nombres siguientes, el sufijo N puede ser un número del 1 al 4:
507
508 @verbatim
509 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
510 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
511 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
512 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
513 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
514 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
515 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
516 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
517 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
518 IndianRedN      siennaN         burlywoodN      wheatN          tanN
519 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
520 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
521 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
522 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
523 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
524 thistleN
525 @end verbatim
526
527
528 @subsubheading Grey Scale
529
530 Se puede obtener una escala de grises utilizando:
531
532 @example
533 greyN
534 @end example
535
536 @noindent
537 donde N es un número entre 0 y 100.
538
539
540 @node The Feta font
541 @appendixsec The Feta font
542
543 @cindex Feta, tipografía
544 @cindex tipografía Feta
545
546 Los símbolos siguientes están disponibles en la tipografía Emmentaler
547 y es posible acceder a ellos directamente utilizando elementos de
548 marcado textual como @code{g^\markup @{ \musicglyph #"scripts.segno"
549 @}}, véase @ref{Formatting text}.
550
551 @lilypondfile[noindent]{font-table.ly}
552
553
554 @node Note head styles
555 @appendixsec Note head styles
556
557 @cindex nota, estilos de cabeza
558 Se pueden usar los siguientes estilos para las cabezas de las notas.
559
560 @lilypondfile[noindent]{note-head-style.ly}
561
562 @include markup-commands.tely
563
564 @include markup-list-commands.tely
565
566 @node List of articulations
567 @appendixsec List of articulations
568
569 @cindex accent
570 @cindex acento
571 @cindex apagado
572 @cindex arco abajo
573 @cindex arco arriba
574 @cindex calderón
575 @cindex coda
576 @cindex downbow
577 @cindex espressivo
578 @cindex fermata
579 @cindex flageolet
580 @cindex foot marks
581 @cindex grupeto circular
582 @cindex grupeto circular invertido
583 @cindex marcato
584 @cindex mordent
585 @cindex open
586 @cindex organ pedal marks
587 @cindex pedal, indicaciones de
588 @cindex portato
589 @cindex prall
590 @cindex prallmordent
591 @cindex prallprall
592 @cindex reverseturn
593 @cindex segno
594 @cindex semitrino
595 @cindex semitrino descendente
596 @cindex staccatissimo
597 @cindex staccato
598 @cindex stopped
599 @cindex tenuto
600 @cindex thumb marking
601 @cindex trill
602 @cindex trino
603 @cindex turn
604 @cindex upbow
605 @cindex varcoda
606 @cindex órgano, indicaciones de pedal de
607
608 He aquí un cuadro que muestra todas las articulaciones disponibles:
609
610 @lilypondfile[quote]{script-chart.ly}
611
612
613 @node Percussion notes
614 @appendixsec Percussion notes
615
616 @lilypondfile[quote]{percussion-chart.ly}
617
618
619 @node All context properties
620 @appendixsec All context properties
621
622 @include context-properties.tely
623
624
625 @node Layout properties
626 @appendixsec Layout properties
627
628 @include layout-properties.tely
629
630
631 @node Identifiers
632 @appendixsec Identifiers
633
634 @include identifiers.tely
635
636
637 @node Scheme functions
638 @appendixsec Scheme functions
639
640 @include scheme-functions.tely