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