]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/notation/notation-appendices.itely
Merge branch 'lilypond/translation'
[lilypond.git] / Documentation / es / notation / notation-appendices.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: es -*-
2
3 @ignore
4     Translation of GIT committish: 97a27c707de72468d690426755eb4e42b3a9dbf4
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  For details, see the Contributors'
8     Guide, node Updating translation committishes..
9 @end ignore
10
11 @c \version "2.12.0"
12
13 @node Tablas del manual sobre notación
14 @appendix Tablas del manual sobre notación
15 @translationof Notation manual tables
16
17 @c Please do not delete the following @ignore block.
18 @ignore
19 Note for editors and translators: In the following menu, two entries
20 are needed to link to a pair of automatically generated sections.
21 Please keep them and, if using emacs, do not run
22 texinfo-all-menus-update without manually restoring them back. These
23 menu entries are:
24
25 * Text markup commands::
26 * Text markup list commands::
27
28 and they should go just after
29 * Estilos de cabezas de nota::
30
31 and just before
32 * Lista de articulaciones::
33 @end ignore
34
35 @menu
36 * Cuadro de nombres de acordes::
37 * Modificadores de acorde más usuales::
38 * Diagramas predefinidos de posiciones::
39 * Instrumentos MIDI::
40 * Lista de colores::
41 * La tipografía Feta::
42 * Estilos de cabezas de nota::
43 * Text markup commands::
44 * Text markup list commands::
45 * Lista de articulaciones::
46 * Notas de percusión::
47 * Glosario técnico::
48 * Todas las propiedades de contexto::
49 * Propiedades de disposición::
50 * Identificadores::
51 * Funciones de Scheme::
52 @end menu
53
54
55
56 @node Cuadro de nombres de acordes
57 @appendixsec Cuadro de nombres de acordes
58 @translationof Chord name chart
59
60 Las siguientes tablas muestran dos sistemas estándar para imprimir los nombres de los acordes,
61 junto a las notas que representan.
62
63 @lilypondfile{chord-names-jazz.ly}
64
65 @node Modificadores de acorde más usuales
66 @appendixsec Modificadores de acorde más usuales
67 @translationof Common chord modifiers
68
69 La tabla siguiente presenta los modificadores de acorde que se pueden
70 usar en el modo de acordes @code{\chordmode} para generar las
71 estructuras de acordes estándar.
72
73 @multitable @columnfractions .2 .3 .2 .2
74
75 @item
76 @b{Tipo de acorde}
77 @tab
78 @b{Intervalos}
79 @tab
80 @b{Modificador(es)}
81 @tab
82 @b{Ejemplo}
83
84
85 @item
86 Mayor
87 @tab
88 Tercera mayor y quinta justa
89 @tab
90 @code{5} o nada
91 @tab
92 @lilypond[line-width=3\cm,noragged-right, notime]
93 \chordmode {
94   c1:5
95 }
96 @end lilypond
97
98 @item
99 Menor
100 @tab
101 Tercera menor y quinta justa
102 @tab
103 @code{m} o @code{m5}
104 @tab
105 @lilypond[line-width=3\cm,noragged-right, notime]
106 \chordmode {
107   c1:m
108 }
109 @end lilypond
110
111 @item
112 Aumentado
113 @tab
114 Tercera mayor y quinta aumentada
115 @tab
116 @code{aug}
117 @tab
118 @lilypond[line-width=3\cm,noragged-right, notime]
119 \chordmode {
120   c1:aug
121 }
122 @end lilypond
123
124 @item
125 Disminuido
126 @tab
127 Tercera menor y quinta disminuida
128 @tab
129 @code{dim}
130 @tab
131 @lilypond[line-width=3\cm,noragged-right, notime]
132 \chordmode {
133   c1:dim
134 }
135 @end lilypond
136
137 @item
138 Séptima dominante
139 @tab
140 Tríada mayor con séptima menor
141 @tab
142 @code{7}
143 @tab
144 @lilypond[line-width=3\cm,noragged-right, notime]
145 \chordmode {
146   c1:7
147 }
148 @end lilypond
149
150 @item
151 Séptima mayor
152 @tab
153 Tríada mayor y séptima mayor
154 @tab
155 @code{maj7} ó @code{maj}
156 @tab
157 @lilypond[line-width=3\cm,noragged-right, notime]
158 \chordmode {
159   c1:maj7
160 }
161 @end lilypond
162
163 @item
164 Séptima menor
165 @tab
166 Tríada menor y séptima menor
167 @tab
168 @code{m7}
169 @tab
170 @lilypond[line-width=3\cm,noragged-right, notime]
171 \chordmode {
172   c1:m7
173 }
174 @end lilypond
175
176 @item
177 Séptima disminuida
178 @tab
179 Tríada disminuida y séptima disminuida
180 @tab
181 @code{dim7}
182 @tab
183 @lilypond[line-width=3\cm,noragged-right, notime]
184 \chordmode {
185   c1:dim7
186 }
187 @end lilypond
188
189 @item
190 Aumentado con séptima
191 @tab
192 Tríada aumentada y séptima menor
193 @tab
194 @code{aug7}
195 @tab
196 @lilypond[line-width=3\cm,noragged-right, notime]
197 \chordmode {
198   c1:aug7
199 }
200 @end lilypond
201
202 @item
203 Séptima semi-disminuido
204 @tab
205 Tríada disminuida y séptima menor
206 @tab
207 @code{m7.5-}
208 @tab
209 @lilypond[line-width=3\cm,noragged-right, notime]
210 \chordmode {
211   c1:m7.5-
212 }
213 @end lilypond
214
215 @item
216 Menor con séptima mayor
217 @tab
218 Tríada menor con séptima mayor
219 @tab
220 @code{maj7.3-}
221 @tab
222 @lilypond[line-width=3\cm,noragged-right, notime]
223 \chordmode {
224   c1:maj7.3-
225 }
226 @end lilypond
227
228 @item
229 Mayor con sexta
230 @tab
231 Tríada mayor y sexta
232 @tab
233 @code{6}
234 @tab
235 @lilypond[line-width=3\cm,noragged-right, notime]
236 \chordmode {
237   c1:6
238 }
239 @end lilypond
240
241 @item
242 Menor con sexta
243 @tab
244 Tríada menor y sexta
245 @tab
246 @code{m6}
247 @tab
248 @lilypond[line-width=3\cm,noragged-right, notime]
249 \chordmode {
250   c1:m6
251 }
252 @end lilypond
253
254 @item
255 Novena dominante
256 @tab
257 Séptima dominante con novena mayor
258 @tab
259 @code{9}
260 @tab
261 @lilypond[line-width=3\cm,noragged-right, notime]
262 \chordmode {
263   c1:9
264 }
265 @end lilypond
266
267 @item
268 Mayor con novena
269 @tab
270 Séptima mayor y novena mayor
271 @tab
272 @code{maj9}
273 @tab
274 @lilypond[line-width=3\cm,noragged-right, notime]
275 \chordmode {
276   c1:maj9
277 }
278 @end lilypond
279
280 @item
281 Menor con novena
282 @tab
283 Séptima menor y novena mayor
284 @tab
285 @code{m9}
286 @tab
287 @lilypond[line-width=3\cm,noragged-right, notime]
288 \chordmode {
289   c1:m9
290 }
291 @end lilypond
292
293 @item
294 Oncena dominante
295 @tab
296 Novena dominante con oncena justa
297 @tab
298 @code{11}
299 @tab
300 @lilypond[line-width=3\cm,noragged-right, notime]
301 \chordmode {
302   c1:11
303 }
304 @end lilypond
305
306 @item
307 Oncena mayor
308 @tab
309 Novena mayor y oncena justa
310 @tab
311 @code{maj11}
312 @tab
313 @lilypond[line-width=3\cm,noragged-right, notime]
314 \chordmode {
315   c1:maj11
316 }
317 @end lilypond
318
319 @item
320 Menor con oncena
321 @tab
322 Novena menor y oncena justa
323 @tab
324 @code{m11}
325 @tab
326 @lilypond[line-width=3\cm,noragged-right, notime]
327 \chordmode {
328   c1:m11
329 }
330 @end lilypond
331
332 @item
333 Trecena dominante
334 @tab
335 Novena dominante y trecena mayor
336 @tab
337 @code{13}
338 @tab
339 @lilypond[line-width=3\cm,noragged-right, notime]
340 \chordmode {
341   c1:13
342 }
343 @end lilypond
344
345 @item
346 Trecena dominante
347 @tab
348 Oncena dominante y trecena mayor
349 @tab
350 @code{13.11}
351 @tab
352 @lilypond[line-width=3\cm,noragged-right, notime]
353 \chordmode {
354   c1:13.11
355 }
356 @end lilypond
357
358 @item
359 Mayor con trecena
360 @tab
361 Oncena mayor y trecena mayor
362 @tab
363 @code{maj13.11}
364 @tab
365 @lilypond[line-width=3\cm,noragged-right, notime]
366 \chordmode {
367   c1:maj13.11
368 }
369 @end lilypond
370
371 @item
372 Menor con trecena
373 @tab
374 Oncena menor y trecena mayor
375 @tab
376 @code{m13.11}
377 @tab
378 @lilypond[line-width=3\cm,noragged-right, notime]
379 \chordmode {
380   c1:m13.11
381 }
382 @end lilypond
383
384 @item
385 Segunda suspendida
386 @tab
387 Segunda mayor y quinta justa
388 @tab
389 @code{sus2}
390 @tab
391 @lilypond[line-width=3\cm,noragged-right, notime]
392 \chordmode {
393   c1:sus2
394 }
395 @end lilypond
396
397 @item
398 Cuarta suspendida
399 @tab
400 Cuarta justa y quinta justa
401 @tab
402 @code{sus4}
403 @tab
404 @lilypond[line-width=3\cm,noragged-right, notime]
405 \chordmode {
406   c1:sus4
407 }
408 @end lilypond
409
410
411 @end multitable
412
413 @node Diagramas predefinidos de posiciones
414 @appendixsec Diagramas predefinidos de posiciones
415 @translationof Predefined fretboard diagrams
416
417 El cuadro siguiente presenta los diagramas de posiciones de acordes
418 predefinidos para guitarra.
419
420 @lilypondfile{display-predefined-fretboards.ly}
421
422 El cuadro siguiente presenta los diagramas de traste predefinidos para ukelele.
423
424 @lilypondfile{display-predefined-ukulele-fretboards.ly}
425
426 @node Instrumentos MIDI
427 @appendixsec Instrumentos MIDI
428 @translationof MIDI instruments
429
430 A continuación figura una lista con los nombres que se pueden utilizar
431 para la propiedad @code{midiInstrument} (instrumento MIDI).  El orden
432 de los instrumentos que aparece aquí, de arriba a abajo empezando por
433 la columna de la izquierda, corresponde a los 128 números de programa
434 del estándar General MIDI.
435
436
437 @example
438 acoustic grand            contrabass           lead 7 (fifths)
439 bright acoustic           tremolo strings      lead 8 (bass+lead)
440 electric grand            pizzicato strings    pad 1 (new age)
441 honky-tonk                orchestral harp      pad 2 (warm)
442 electric piano 1          timpani              pad 3 (polysynth)
443 electric piano 2          string ensemble 1    pad 4 (choir)
444 harpsichord               string ensemble 2    pad 5 (bowed)
445 clav                      synthstrings 1       pad 6 (metallic)
446 celesta                   synthstrings 2       pad 7 (halo)
447 glockenspiel              choir aahs           pad 8 (sweep)
448 music box                 voice oohs           fx 1 (rain)
449 vibraphone                synth voice          fx 2 (soundtrack)
450 marimba                   orchestra hit        fx 3 (crystal)
451 xylophone                 trumpet              fx 4 (atmosphere)
452 tubular bells             trombone             fx 5 (brightness)
453 dulcimer                  tuba                 fx 6 (goblins)
454 drawbar organ             muted trumpet        fx 7 (echoes)
455 percussive organ          french horn          fx 8 (sci-fi)
456 rock organ                brass section        sitar
457 church organ              synthbrass 1         banjo
458 reed organ                synthbrass 2         shamisen
459 accordion                 soprano sax          koto
460 harmonica                 alto sax             kalimba
461 concertina                tenor sax            bagpipe
462 acoustic guitar (nylon)   baritone sax         fiddle
463 acoustic guitar (steel)   oboe                 shanai
464 electric guitar (jazz)    english horn         tinkle bell
465 electric guitar (clean)   bassoon              agogo
466 electric guitar (muted)   clarinet             steel drums
467 overdriven guitar         piccolo              woodblock
468 distorted guitar          flute                taiko drum
469 guitar harmonics          recorder             melodic tom
470 acoustic bass             pan flute            synth drum
471 electric bass (finger)    blown bottle         reverse cymbal
472 electric bass (pick)      shakuhachi           guitar fret noise
473 fretless bass             whistle              breath noise
474 slap bass 1               ocarina              seashore
475 slap bass 2               lead 1 (square)      bird tweet
476 synth bass 1              lead 2 (sawtooth)    telephone ring
477 synth bass 2              lead 3 (calliope)    helicopter
478 violin                    lead 4 (chiff)       applause
479 viola                     lead 5 (charang)     gunshot
480 cello                     lead 6 (voice)
481 @end example
482
483
484 @node Lista de colores
485 @appendixsec Lista de colores
486 @translationof List of colors
487
488 @subsubheading Colores normales
489
490 La sintaxis para el uso de colores se encuentra detallada en @ref{Colorear objetos}.
491
492 @cindex lista de colores
493 @cindex colores, lista de
494
495 @verbatim
496 black       white          red         green
497 blue        cyan           magenta     yellow
498 grey        darkred        darkgreen   darkblue
499 darkcyan    darkmagenta    darkyellow
500 @end verbatim
501
502
503 @subsubheading Nombres de los colores de X
504
505 Los nombres de los colores de X admiten algunas variantes:
506
507 Un nombre que se escribe como una palabra única con mayúsculas
508 intercaladas (p.ej. @q{LightSlateBlue}) se puede escribir también como
509 palabras separadas por espacios y sin mayúsculas (p.ej. @q{light slate
510 blue}).
511
512 La palabra @q{grey} siempre se puede escribir como @q{gray} (p.ej. @q{DarkSlateGray}).
513
514 Algunos nombres admiten un sufijo numérico (p.ej. @q{LightSalmon4}).
515
516
517 @subsubheading Nombres de los colores sin sufijo numérico:
518
519 @verbatim
520 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
521 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
522 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
523 ivory           LemonChiffon    seashell        honeydew        MintCream
524 azure           AliceBlue       lavender        LavenderBlush   MistyRose
525 white           black           DarkSlateGrey   DimGrey         SlateGrey
526 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
527 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
528 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
529 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
530 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
531 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
532 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
533 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
534 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
535 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
536 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
537 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
538 SaddleBrown     sienna          peru            burlywood       beige
539 wheat           SandyBrown      tan             chocolate       firebrick
540 brown           DarkSalmon      salmon          LightSalmon     orange
541 DarkOrange      coral           LightCoral      tomato          OrangeRed
542 red             HotPink         DeepPink        pink            LightPink
543 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
544 violet          plum            orchid          MediumOrchid    DarkOrchid
545 DarkViolet      BlueViolet      purple          MediumPurple    thistle
546 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
547 LightGreen
548 @end verbatim
549
550
551 @subsubheading Nombres de los colores con sufijo numérico
552
553 En los nombres siguientes, el sufijo N puede ser un número del 1 al 4:
554
555 @verbatim
556 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
557 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
558 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
559 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
560 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
561 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
562 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
563 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
564 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
565 IndianRedN      siennaN         burlywoodN      wheatN          tanN
566 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
567 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
568 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
569 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
570 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
571 thistleN
572 @end verbatim
573
574
575 @subsubheading Escala de grises
576
577 Se puede obtener una escala de grises utilizando:
578
579 @example
580 greyN
581 @end example
582
583 @noindent
584 donde N es un número entre 0 y 100.
585
586
587 @node La tipografía Feta
588 @appendixsec La tipografía Feta
589 @translationof The Feta font
590
591 @cindex Feta, tipografía
592 @cindex tipografía Feta
593
594 Los símbolos siguientes están disponibles en la tipografía Emmentaler
595 y es posible acceder a ellos directamente utilizando elementos de
596 marcado textual con el nombre del glifo
597 tal y como se muestra en las tablas de abajo,
598 por ejemplo @code{g^\markup @{\musicglyph #"scripts.segno" @}} ó
599 @code{\markup @{\musicglyph #"five"@}}.  Para ver más información,
600 consulte @ref{Formatear el texto}.
601
602 @menu
603 * Clef glyphs::
604 * Time Signature glyphs::
605 * Number glyphs::
606 * Accidental glyphs::
607 * Default Notehead glyphs::
608 * Special Notehead glyphs::
609 * Shape-note Notehead glyphs::
610 * Rest glyphs::
611 * Flag glyphs::
612 * Dot glyphs::
613 * Dynamic glyphs::
614 * Script glyphs::
615 * Arrowhead glyphs::
616 * Bracket-tip glyphs::
617 * Pedal glyphs::
618 * Accordion glyphs::
619 * Vaticana glyphs::
620 * Medicaea glyphs::
621 * Hufnagel glyphs::
622 * Mensural glyphs::
623 * Neomensural glyphs::
624 * Petrucci glyphs::
625 * Solesmes glyphs::
626 @end menu
627
628
629 @node Clef glyphs
630 @unnumberedsubsec Clef glyphs
631 @translationof Clef glyphs
632
633 @lilypond[quote]
634 \include "font-table.ly"
635 \markuplines \override-lines #'(word-space . 4)
636              \doc-chars #clefs
637 @end lilypond
638
639
640 @node Time Signature glyphs
641 @unnumberedsubsec Time Signature glyphs
642 @translationof Time Signature glyphs
643
644 @lilypond[quote]
645 \include "font-table.ly"
646 \markuplines \override-lines #'(word-space . 4)
647              \doc-chars #timesig
648 @end lilypond
649
650
651 @node Number glyphs
652 @unnumberedsubsec Number glyphs
653 @translationof Number glyphs
654
655 @lilypond[quote]
656 \include "font-table.ly"
657 \markuplines \override-lines #'(word-space . 4)
658              \doc-chars #numbers
659 @end lilypond
660
661
662 @node Accidental glyphs
663 @unnumberedsubsec Accidental glyphs
664 @translationof Accidental glyphs
665
666 @lilypond[quote]
667 \include "font-table.ly"
668 \markuplines \override-lines #'(word-space . 4)
669              \doc-chars #accidentals
670 @end lilypond
671
672
673 @node Default Notehead glyphs
674 @unnumberedsubsec Default Notehead glyphs
675 @translationof Default Notehead glyphs
676
677 @lilypond[quote]
678 \include "font-table.ly"
679 \markuplines \override-lines #'(word-space . 4)
680              \doc-chars #default-noteheads
681 @end lilypond
682
683
684 @node Special Notehead glyphs
685 @unnumberedsubsec Special Notehead glyphs
686 @translationof Special Notehead glyphs
687
688 @lilypond[quote]
689 \include "font-table.ly"
690 \markuplines \override-lines #'(word-space . 4)
691              \doc-chars #special-noteheads
692 @end lilypond
693
694
695 @node Shape-note Notehead glyphs
696 @unnumberedsubsec Shape-note Notehead glyphs
697 @translationof Shape-note Notehead glyphs
698
699 @lilypond[quote]
700 \include "font-table.ly"
701 \markuplines \override-lines #'(word-space . 4)
702              \doc-chars #shape-note-noteheads
703 @end lilypond
704
705
706 @node Rest glyphs
707 @unnumberedsubsec Rest glyphs
708 @translationof Rest glyphs
709
710 @lilypond[quote]
711 \include "font-table.ly"
712 \markuplines \override-lines #'(word-space . 4)
713              \doc-chars #rests
714 @end lilypond
715
716
717 @node Flag glyphs
718 @unnumberedsubsec Flag glyphs
719 @translationof Flag glyphs
720
721 @lilypond[quote]
722 \include "font-table.ly"
723 \markuplines \override-lines #'(word-space . 4)
724              \doc-chars #flags
725 @end lilypond
726
727
728 @node Dot glyphs
729 @unnumberedsubsec Dot glyphs
730 @translationof Dot glyphs
731
732 @lilypond[quote]
733 \include "font-table.ly"
734 \markuplines \override-lines #'(word-space . 4)
735              \doc-chars #dots
736 @end lilypond
737
738
739 @node Dynamic glyphs
740 @unnumberedsubsec Dynamic glyphs
741 @translationof Dynamic glyphs
742
743 @lilypond[quote]
744 \include "font-table.ly"
745 \markuplines \override-lines #'(word-space . 4)
746              \doc-chars #dynamics
747 @end lilypond
748
749
750 @node Script glyphs
751 @unnumberedsubsec Script glyphs
752 @translationof Script glyphs
753
754 @lilypond[quote]
755 \include "font-table.ly"
756 \markuplines \override-lines #'(word-space . 4)
757              \doc-chars #scripts
758 @end lilypond
759
760
761 @node Arrowhead glyphs
762 @unnumberedsubsec Arrowhead glyphs
763 @translationof Arrowhead glyphs
764
765 @lilypond[quote]
766 \include "font-table.ly"
767 \markuplines \override-lines #'(word-space . 4)
768              \doc-chars #arrowheads
769 @end lilypond
770
771
772 @node Bracket-tip glyphs
773 @unnumberedsubsec Bracket-tip glyphs
774 @translationof Bracket-tip glyphs
775
776 @lilypond[quote]
777 \include "font-table.ly"
778 \markuplines \override-lines #'(word-space . 4)
779              \doc-chars #brackettips
780 @end lilypond
781
782
783 @node Pedal glyphs
784 @unnumberedsubsec Pedal glyphs
785 @translationof Pedal glyphs
786
787 @lilypond[quote]
788 \include "font-table.ly"
789 \markuplines \override-lines #'(word-space . 4)
790              \doc-chars #pedal
791 @end lilypond
792
793
794 @node Accordion glyphs
795 @unnumberedsubsec Accordion glyphs
796 @translationof Accordion glyphs
797
798 @lilypond[quote]
799 \include "font-table.ly"
800 \markuplines \override-lines #'(word-space . 4)
801              \doc-chars #accordion
802 @end lilypond
803
804
805 @node Vaticana glyphs
806 @unnumberedsubsec Vaticana glyphs
807 @translationof Vaticana glyphs
808
809 @lilypond[quote]
810 \include "font-table.ly"
811 \markuplines \override-lines #'(word-space . 4)
812              \doc-chars #vaticana
813 @end lilypond
814
815
816 @node Medicaea glyphs
817 @unnumberedsubsec Medicaea glyphs
818 @translationof Medicaea glyphs
819
820 @lilypond[quote]
821 \include "font-table.ly"
822 \markuplines \override-lines #'(word-space . 4)
823              \doc-chars #medicaea
824 @end lilypond
825
826
827 @node Hufnagel glyphs
828 @unnumberedsubsec Hufnagel glyphs
829 @translationof Hufnagel glyphs
830
831 @lilypond[quote]
832 \include "font-table.ly"
833 \markuplines \override-lines #'(word-space . 4)
834              \doc-chars #hufnagel
835 @end lilypond
836
837
838 @node Mensural glyphs
839 @unnumberedsubsec Mensural glyphs
840 @translationof Mensural glyphs
841
842 @lilypond[quote]
843 \include "font-table.ly"
844 \markuplines \override-lines #'(word-space . 4)
845              \doc-chars #mensural
846 @end lilypond
847
848
849 @node Neomensural glyphs
850 @unnumberedsubsec Neomensural glyphs
851 @translationof Neomensural glyphs
852
853 @lilypond[quote]
854 \include "font-table.ly"
855 \markuplines \override-lines #'(word-space . 4)
856              \doc-chars #neomensural
857 @end lilypond
858
859
860 @node Petrucci glyphs
861 @unnumberedsubsec Petrucci glyphs
862 @translationof Petrucci glyphs
863
864 @lilypond[quote]
865 \include "font-table.ly"
866 \markuplines \override-lines #'(word-space . 4)
867              \doc-chars #petrucci
868 @end lilypond
869
870
871 @node Solesmes glyphs
872 @unnumberedsubsec Solesmes glyphs
873 @translationof Solesmes glyphs
874
875 @lilypond[quote]
876 \include "font-table.ly"
877 \markuplines \override-lines #'(word-space . 4)
878              \doc-chars #solesmes
879 @end lilypond
880
881
882 @node Estilos de cabezas de nota
883 @appendixsec Estilos de cabezas de nota
884 @translationof Note head styles
885
886 @cindex nota, estilos de cabeza
887 Se pueden usar los siguientes estilos para las cabezas de las notas.
888
889 @lilypondfile[noindent]{note-head-style.ly}
890
891 @include markup-commands.tely
892
893 @include markup-list-commands.tely
894
895 @node Lista de articulaciones
896 @appendixsec Lista de articulaciones
897 @translationof List of articulations
898
899 @cindex acento
900 @cindex apagado
901 @cindex arco abajo
902 @cindex arco arriba
903 @cindex calderón
904 @cindex circulus
905 @cindex coda
906 @cindex downbow
907 @cindex downmordent
908 @cindex downprall
909 @cindex espressivo
910 @cindex fermata
911 @cindex flageolet
912 @cindex grupeto circular
913 @cindex grupeto circular invertido
914 @cindex halfopen
915 @cindex ictus
916 @cindex indicación de pulgar
917 @cindex lheel
918 @cindex lineprall
919 @cindex longfermata
920 @cindex ltoe
921 @cindex marcas de pie
922 @cindex marcato
923 @cindex mordent
924 @cindex open
925 @cindex órgano, indicaciones de pedal de
926 @cindex pedal, indicaciones de
927 @cindex portato
928 @cindex prall
929 @cindex pralldown
930 @cindex prallmordent
931 @cindex prallprall
932 @cindex prallup
933 @cindex pulgar, indicación de
934 @cindex reverseturn
935 @cindex rheel
936 @cindex rtoe
937 @cindex segno
938 @cindex semicirculus
939 @cindex semitrino
940 @cindex semitrino descendente
941 @cindex shortfermata
942 @cindex signumcongruentiae
943 @cindex snappizzicato
944 @cindex staccatissimo
945 @cindex staccato
946 @cindex tenuto
947 @cindex trill
948 @cindex trino
949 @cindex upmordent
950 @cindex upprall
951 @cindex varcoda
952 @cindex verylongfermata
953
954 Las siguientes inscripciones setán disponibles en la tipografía Feta y
955 se pueden adjuntar a las notas (p.ej. @samp{c\accent}).
956
957 @c Articulations and ornamentations
958 @c Fingering instructions (for "thumb")
959 @c Common notation for unfretted strings
960 @c   Bowing indications
961 @c   Harmonics
962 @c   Snap (Bartók) pizzicato
963 @c Custom percussion staves (for "halfopen" -- not yet funindexed)
964 @c References for wind instruments (for "open"/"stopped" -- not yet funindexed)
965
966
967 @menu
968 * Indicaciones de articulación::
969 * Indicaciones de adrornos::
970 * Indicaciones de calderón::
971 * Indicaciones específicas de ciertos instrumentos::
972 * Indicaciones de repetición::
973 * Inidicaciones antiguas::
974 @end menu
975
976
977 @node Indicaciones de articulación
978 @unnumberedsubsec Indicaciones de articulación
979 @translationof Articulation scripts
980
981 @lilypond[quote]
982 \include "script-chart.ly"
983 \new RhythmicStaff { \scriptStaff #articulations }
984 @end lilypond
985
986 @node Indicaciones de adrornos
987 @unnumberedsubsec Indicaciones de adrornos
988 @translationof Ornament scripts
989
990 @lilypond[quote]
991 \include "script-chart.ly"
992 \new RhythmicStaff { \scriptStaff #ornaments }
993 @end lilypond
994
995 @node Indicaciones de calderón
996 @unnumberedsubsec Indicaciones de calderón
997 @translationof Fermata scripts
998
999 @lilypond[quote]
1000 \include "script-chart.ly"
1001 \new RhythmicStaff { \scriptStaff #fermatas }
1002 @end lilypond
1003
1004 @node Indicaciones específicas de ciertos instrumentos
1005 @unnumberedsubsec Indicaciones específicas de ciertos instrumentos
1006 @translationof Instrument-specific scripts
1007
1008 @lilypond[quote]
1009 \include "script-chart.ly"
1010 \new RhythmicStaff { \scriptStaff #instrument-specific }
1011 @end lilypond
1012
1013 @node Indicaciones de repetición
1014 @unnumberedsubsec Indicaciones de repetición
1015 @translationof Repeat sign scripts
1016
1017 @lilypond[quote]
1018 \include "script-chart.ly"
1019 \new RhythmicStaff { \scriptStaff #repeats }
1020 @end lilypond
1021
1022 @node Inidicaciones antiguas
1023 @unnumberedsubsec Inidicaciones antiguas
1024 @translationof Ancient scripts
1025
1026 @lilypond[quote]
1027 \include "script-chart.ly"
1028 \include "gregorian.ly"
1029 \new VaticanaStaff { \scriptStaffAncient #ancient }
1030 @end lilypond
1031
1032
1033 @node Notas de percusión
1034 @appendixsec Notas de percusión
1035 @translationof Percussion notes
1036
1037 @lilypondfile[quote]{percussion-chart.ly}
1038
1039
1040 @node Glosario técnico
1041 @appendixsec Glosario técnico
1042 @translationof Technical glossary
1043
1044 Glosario de los términos técnicos y conceptos que se utilizan
1045 internamente en LilyPond.  Estos términos pueden aparecer en los
1046 manuales, en las listas de distribución de correo o en el código
1047 fuente.
1048
1049 @menu
1050 * alist::
1051 * callback::
1052 * closure::
1053 * glyph::
1054 * grob::
1055 * immutable::
1056 * interface::
1057 * lexer::
1058 * mutable::
1059 * output-def::
1060 * parser::
1061 * parser variable::
1062 * prob::
1063 * simple closure::
1064 * smob::
1065 * stencil::
1066 @end menu
1067
1068 @node alist
1069 @unnumberedsubsec alist
1070
1071 @cindex alist
1072 @cindex association list
1073
1074 @untranslated
1075
1076 @node callback
1077 @unnumberedsubsec callback
1078
1079 @cindex callback
1080
1081 @untranslated
1082
1083 @node closure
1084 @unnumberedsubsec closure
1085
1086 @cindex closure
1087 @cindex simple closure
1088
1089 @untranslated
1090
1091 @node glyph
1092 @unnumberedsubsec glyph
1093
1094 @cindex glyph
1095 @cindex font
1096 @cindex typeface
1097
1098 @untranslated
1099
1100 @seealso
1101 Referencia de la notación:
1102 @ref{Fonts},
1103 @ref{Text encoding}.
1104
1105
1106 @node grob
1107 @unnumberedsubsec grob
1108
1109 @cindex grob
1110 @cindex layout objects
1111 @cindex graphical objects
1112
1113 @untranslated
1114
1115 @seealso
1116 Manual de aprendizaje:
1117 @rlearning{Objects and interfaces},
1118 @rlearning{Naming conventions of objects and properties},
1119 @rlearning{Properties of layout objects}.
1120
1121 Referencia de funcionamiento interno:
1122 @rinternals{grob-interface},
1123 @rinternals{All layout objects}.
1124
1125
1126 @node immutable
1127 @unnumberedsubsec immutable
1128
1129 @cindex immutable objects
1130 @cindex immutable properties
1131 @cindex shared properties
1132
1133 @untranslated
1134
1135 @seealso
1136 Referencia de la notación:
1137 @ref{mutable}.
1138
1139 @node interface
1140 @unnumberedsubsec interface
1141
1142 @cindex interface
1143 @cindex grob-interface
1144 @cindex graphical object interfaces
1145
1146 @untranslated
1147
1148 @seealso
1149 Manual de aprendizaje:
1150 @rlearning{Objects and interfaces},
1151 @rlearning{Naming conventions of objects and properties},
1152 @rlearning{Properties found in interfaces}.
1153
1154 Referencia de la notación:
1155 @ref{Layout interfaces}.
1156
1157 Referencia de funcionamiento interno:
1158 @rinternals{Graphical Object Interfaces}.
1159
1160
1161 @node lexer
1162 @unnumberedsubsec lexer
1163
1164 @cindex lexer
1165 @cindex Flex
1166
1167 @untranslated
1168
1169 @node mutable
1170 @unnumberedsubsec mutable
1171
1172 @cindex mutable objects
1173 @cindex mutable properties
1174
1175 @untranslated
1176
1177 @seealso
1178 Referencia de la notación:
1179 @ref{immutable}.
1180
1181 @node output-def
1182 @unnumberedsubsec output-def
1183
1184 @cindex output-def
1185
1186 @untranslated
1187
1188 @node parser
1189 @unnumberedsubsec parser
1190
1191 @cindex parser
1192 @cindex Bison
1193 @cindex grammar for LilyPond
1194 @cindex BNF
1195
1196 @untranslated
1197
1198 @node parser variable
1199 @unnumberedsubsec parser variable
1200
1201 @cindex parser variable
1202 @cindex Scheme variable
1203 @cindex global variable
1204 @cindex afterGraceFraction
1205 @cindex musicQuotes
1206 @cindex mode
1207 @cindex output-count
1208 @cindex output-suffix
1209 @cindex parseStringResult
1210 @cindex partCombineListener
1211 @cindex pitchnames
1212 @cindex toplevel-bookparts
1213 @cindex toplevel-scores
1214 @cindex showLastLength
1215 @cindex showFirstLength
1216
1217 @untranslated
1218
1219 @node prob
1220 @unnumberedsubsec prob
1221
1222 @cindex prob
1223 @cindex property object
1224
1225 @untranslated
1226
1227 @node simple closure
1228 @unnumberedsubsec simple closure
1229
1230 Véase @ref{closure}.
1231
1232
1233 @node smob
1234 @unnumberedsubsec smob
1235
1236 @cindex smob
1237 @cindex Scheme object
1238
1239 @untranslated
1240
1241 @node stencil
1242 @unnumberedsubsec stencil
1243
1244 @cindex stencil
1245
1246 @untranslated
1247
1248 @seealso
1249 Referencia de funcionamiento interno:
1250 @rinternals{grob-interface}.
1251
1252
1253 @node Todas las propiedades de contexto
1254 @appendixsec Todas las propiedades de contexto
1255 @translationof All context properties
1256
1257 @include context-properties.tely
1258
1259
1260 @node Propiedades de disposición
1261 @appendixsec Propiedades de disposición
1262 @translationof Layout properties
1263
1264 @include layout-properties.tely
1265
1266
1267 @node Identificadores
1268 @appendixsec Identificadores
1269 @translationof Identifiers
1270
1271 @include identifiers.tely
1272
1273
1274 @node Funciones de Scheme
1275 @appendixsec Funciones de Scheme
1276 @translationof Scheme functions
1277
1278 @include scheme-functions.tely