]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/notation/notation-appendices.itely
Doc-es: update notation appendices
[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: c1eb9d63bb22ba4a9243942599f68768f5631e34
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 trastes::
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 trastes
414 @appendixsec Diagramas predefinidos de trastes
415 @translationof Predefined fretboard diagrams
416
417 El cuadro siguiente presenta los diagramas de traste predefinidos para guitarra.
418
419 @lilypondfile{display-predefined-fretboards.ly}
420
421 El cuadro siguiente presenta los diagramas de traste predefinidos para ukelele.
422
423 @lilypondfile{display-predefined-ukulele-fretboards.ly}
424
425 @node Instrumentos MIDI
426 @appendixsec Instrumentos MIDI
427 @translationof MIDI instruments
428
429 A continuación figura una lista con los nombres que se pueden utilizar para la
430 propiedad @code{midiInstrument} (instrumento MIDI).
431
432 @example
433 acoustic grand            contrabass           lead 7 (fifths)
434 bright acoustic           tremolo strings      lead 8 (bass+lead)
435 electric grand            pizzicato strings    pad 1 (new age)
436 honky-tonk                orchestral harp      pad 2 (warm)
437 electric piano 1          timpani              pad 3 (polysynth)
438 electric piano 2          string ensemble 1    pad 4 (choir)
439 harpsichord               string ensemble 2    pad 5 (bowed)
440 clav                      synthstrings 1       pad 6 (metallic)
441 celesta                   synthstrings 2       pad 7 (halo)
442 glockenspiel              choir aahs           pad 8 (sweep)
443 music box                 voice oohs           fx 1 (rain)
444 vibraphone                synth voice          fx 2 (soundtrack)
445 marimba                   orchestra hit        fx 3 (crystal)
446 xylophone                 trumpet              fx 4 (atmosphere)
447 tubular bells             trombone             fx 5 (brightness)
448 dulcimer                  tuba                 fx 6 (goblins)
449 drawbar organ             muted trumpet        fx 7 (echoes)
450 percussive organ          french horn          fx 8 (sci-fi)
451 rock organ                brass section        sitar
452 church organ              synthbrass 1         banjo
453 reed organ                synthbrass 2         shamisen
454 accordion                 soprano sax          koto
455 harmonica                 alto sax             kalimba
456 concertina                tenor sax            bagpipe
457 acoustic guitar (nylon)   baritone sax         fiddle
458 acoustic guitar (steel)   oboe                 shanai
459 electric guitar (jazz)    english horn         tinkle bell
460 electric guitar (clean)   bassoon              agogo
461 electric guitar (muted)   clarinet             steel drums
462 overdriven guitar         piccolo              woodblock
463 distorted guitar          flute                taiko drum
464 guitar harmonics          recorder             melodic tom
465 acoustic bass             pan flute            synth drum
466 electric bass (finger)    blown bottle         reverse cymbal
467 electric bass (pick)      shakuhachi           guitar fret noise
468 fretless bass             whistle              breath noise
469 slap bass 1               ocarina              seashore
470 slap bass 2               lead 1 (square)      bird tweet
471 synth bass 1              lead 2 (sawtooth)    telephone ring
472 synth bass 2              lead 3 (calliope)    helicopter
473 violin                    lead 4 (chiff)       applause
474 viola                     lead 5 (charang)     gunshot
475 cello                     lead 6 (voice)
476 @end example
477
478
479 @node Lista de colores
480 @appendixsec Lista de colores
481 @translationof List of colors
482
483 @subsubheading Colores normales
484
485 La sintaxis para el uso de colores se encuentra detallada en @ref{Colorear objetos}.
486
487 @cindex lista de colores
488 @cindex colores, lista de
489
490 @verbatim
491 black       white          red         green
492 blue        cyan           magenta     yellow
493 grey        darkred        darkgreen   darkblue
494 darkcyan    darkmagenta    darkyellow
495 @end verbatim
496
497
498 @subsubheading Nombres de los colores de X
499
500 Los nombres de los colores de X admiten algunas variantes:
501
502 Un nombre que se escribe como una palabra única con mayúsculas
503 intercaladas (p.ej. @q{LightSlateBlue}) se puede escribir también como
504 palabras separadas por espacios y sin mayúsculas (p.ej. @q{light slate
505 blue}).
506
507 La palabra @q{grey} siempre se puede escribir como @q{gray} (p.ej. @q{DarkSlateGray}).
508
509 Algunos nombres admiten un sufijo numérico (p.ej. @q{LightSalmon4}).
510
511
512 @subsubheading Nombres de los colores sin sufijo numérico:
513
514 @verbatim
515 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
516 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
517 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
518 ivory           LemonChiffon    seashell        honeydew        MintCream
519 azure           AliceBlue       lavender        LavenderBlush   MistyRose
520 white           black           DarkSlateGrey   DimGrey         SlateGrey
521 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
522 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
523 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
524 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
525 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
526 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
527 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
528 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
529 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
530 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
531 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
532 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
533 SaddleBrown     sienna          peru            burlywood       beige
534 wheat           SandyBrown      tan             chocolate       firebrick
535 brown           DarkSalmon      salmon          LightSalmon     orange
536 DarkOrange      coral           LightCoral      tomato          OrangeRed
537 red             HotPink         DeepPink        pink            LightPink
538 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
539 violet          plum            orchid          MediumOrchid    DarkOrchid
540 DarkViolet      BlueViolet      purple          MediumPurple    thistle
541 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
542 LightGreen
543 @end verbatim
544
545
546 @subsubheading Nombres de los colores con sufijo numérico
547
548 En los nombres siguientes, el sufijo N puede ser un número del 1 al 4:
549
550 @verbatim
551 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
552 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
553 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
554 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
555 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
556 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
557 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
558 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
559 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
560 IndianRedN      siennaN         burlywoodN      wheatN          tanN
561 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
562 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
563 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
564 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
565 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
566 thistleN
567 @end verbatim
568
569
570 @subsubheading Escala de grises
571
572 Se puede obtener una escala de grises utilizando:
573
574 @example
575 greyN
576 @end example
577
578 @noindent
579 donde N es un número entre 0 y 100.
580
581
582 @node La tipografía Feta
583 @appendixsec La tipografía Feta
584 @translationof The Feta font
585
586 @cindex Feta, tipografía
587 @cindex tipografía Feta
588
589 Los símbolos siguientes están disponibles en la tipografía Emmentaler
590 y es posible acceder a ellos directamente utilizando elementos de
591 marcado textual con el nombre del glifo
592 tal y como se muestra en las tablas de abajo,
593 por ejemplo @code{g^\markup @{\musicglyph #"scripts.segno" @}} ó
594 @code{\markup @{\musicglyph #"five"@}}.  Para ver más información,
595 consulte @ref{Formatear el texto}.
596
597 @menu
598 * Clef glyphs::
599 * Time Signature glyphs::
600 * Number glyphs::
601 * Accidental glyphs::
602 * Default Notehead glyphs::
603 * Special Notehead glyphs::
604 * Shape-note Notehead glyphs::
605 * Rest glyphs::
606 * Flag glyphs::
607 * Dot glyphs::
608 * Dynamic glyphs::
609 * Script glyphs::
610 * Arrowhead glyphs::
611 * Bracket-tip glyphs::
612 * Pedal glyphs::
613 * Accordion glyphs::
614 * Vaticana glyphs::
615 * Medicaea glyphs::
616 * Hufnagel glyphs::
617 * Mensural glyphs::
618 * Neomensural glyphs::
619 * Petrucci glyphs::
620 * Solesmes glyphs::
621 @end menu
622
623
624 @node Clef glyphs
625 @unnumberedsubsec Clef glyphs
626 @translationof Clef glyphs
627
628 @lilypond[quote]
629 \include "font-table.ly"
630 \markuplines \override-lines #'(word-space . 4)
631              \doc-chars #clefs
632 @end lilypond
633
634
635 @node Time Signature glyphs
636 @unnumberedsubsec Time Signature glyphs
637 @translationof Time Signature glyphs
638
639 @lilypond[quote]
640 \include "font-table.ly"
641 \markuplines \override-lines #'(word-space . 4)
642              \doc-chars #timesig
643 @end lilypond
644
645
646 @node Number glyphs
647 @unnumberedsubsec Number glyphs
648 @translationof Number glyphs
649
650 @lilypond[quote]
651 \include "font-table.ly"
652 \markuplines \override-lines #'(word-space . 4)
653              \doc-chars #numbers
654 @end lilypond
655
656
657 @node Accidental glyphs
658 @unnumberedsubsec Accidental glyphs
659 @translationof Accidental glyphs
660
661 @lilypond[quote]
662 \include "font-table.ly"
663 \markuplines \override-lines #'(word-space . 4)
664              \doc-chars #accidentals
665 @end lilypond
666
667
668 @node Default Notehead glyphs
669 @unnumberedsubsec Default Notehead glyphs
670 @translationof Default Notehead glyphs
671
672 @lilypond[quote]
673 \include "font-table.ly"
674 \markuplines \override-lines #'(word-space . 4)
675              \doc-chars #default-noteheads
676 @end lilypond
677
678
679 @node Special Notehead glyphs
680 @unnumberedsubsec Special Notehead glyphs
681 @translationof Special Notehead glyphs
682
683 @lilypond[quote]
684 \include "font-table.ly"
685 \markuplines \override-lines #'(word-space . 4)
686              \doc-chars #special-noteheads
687 @end lilypond
688
689
690 @node Shape-note Notehead glyphs
691 @unnumberedsubsec Shape-note Notehead glyphs
692 @translationof Shape-note Notehead glyphs
693
694 @lilypond[quote]
695 \include "font-table.ly"
696 \markuplines \override-lines #'(word-space . 4)
697              \doc-chars #shape-note-noteheads
698 @end lilypond
699
700
701 @node Rest glyphs
702 @unnumberedsubsec Rest glyphs
703 @translationof Rest glyphs
704
705 @lilypond[quote]
706 \include "font-table.ly"
707 \markuplines \override-lines #'(word-space . 4)
708              \doc-chars #rests
709 @end lilypond
710
711
712 @node Flag glyphs
713 @unnumberedsubsec Flag glyphs
714 @translationof Flag glyphs
715
716 @lilypond[quote]
717 \include "font-table.ly"
718 \markuplines \override-lines #'(word-space . 4)
719              \doc-chars #flags
720 @end lilypond
721
722
723 @node Dot glyphs
724 @unnumberedsubsec Dot glyphs
725 @translationof Dot glyphs
726
727 @lilypond[quote]
728 \include "font-table.ly"
729 \markuplines \override-lines #'(word-space . 4)
730              \doc-chars #dots
731 @end lilypond
732
733
734 @node Dynamic glyphs
735 @unnumberedsubsec Dynamic glyphs
736 @translationof Dynamic glyphs
737
738 @lilypond[quote]
739 \include "font-table.ly"
740 \markuplines \override-lines #'(word-space . 4)
741              \doc-chars #dynamics
742 @end lilypond
743
744
745 @node Script glyphs
746 @unnumberedsubsec Script glyphs
747 @translationof Script glyphs
748
749 @lilypond[quote]
750 \include "font-table.ly"
751 \markuplines \override-lines #'(word-space . 4)
752              \doc-chars #scripts
753 @end lilypond
754
755
756 @node Arrowhead glyphs
757 @unnumberedsubsec Arrowhead glyphs
758 @translationof Arrowhead glyphs
759
760 @lilypond[quote]
761 \include "font-table.ly"
762 \markuplines \override-lines #'(word-space . 4)
763              \doc-chars #arrowheads
764 @end lilypond
765
766
767 @node Bracket-tip glyphs
768 @unnumberedsubsec Bracket-tip glyphs
769 @translationof Bracket-tip glyphs
770
771 @lilypond[quote]
772 \include "font-table.ly"
773 \markuplines \override-lines #'(word-space . 4)
774              \doc-chars #brackettips
775 @end lilypond
776
777
778 @node Pedal glyphs
779 @unnumberedsubsec Pedal glyphs
780 @translationof Pedal glyphs
781
782 @lilypond[quote]
783 \include "font-table.ly"
784 \markuplines \override-lines #'(word-space . 4)
785              \doc-chars #pedal
786 @end lilypond
787
788
789 @node Accordion glyphs
790 @unnumberedsubsec Accordion glyphs
791 @translationof Accordion glyphs
792
793 @lilypond[quote]
794 \include "font-table.ly"
795 \markuplines \override-lines #'(word-space . 4)
796              \doc-chars #accordion
797 @end lilypond
798
799
800 @node Vaticana glyphs
801 @unnumberedsubsec Vaticana glyphs
802 @translationof Vaticana glyphs
803
804 @lilypond[quote]
805 \include "font-table.ly"
806 \markuplines \override-lines #'(word-space . 4)
807              \doc-chars #vaticana
808 @end lilypond
809
810
811 @node Medicaea glyphs
812 @unnumberedsubsec Medicaea glyphs
813 @translationof Medicaea glyphs
814
815 @lilypond[quote]
816 \include "font-table.ly"
817 \markuplines \override-lines #'(word-space . 4)
818              \doc-chars #medicaea
819 @end lilypond
820
821
822 @node Hufnagel glyphs
823 @unnumberedsubsec Hufnagel glyphs
824 @translationof Hufnagel glyphs
825
826 @lilypond[quote]
827 \include "font-table.ly"
828 \markuplines \override-lines #'(word-space . 4)
829              \doc-chars #hufnagel
830 @end lilypond
831
832
833 @node Mensural glyphs
834 @unnumberedsubsec Mensural glyphs
835 @translationof Mensural glyphs
836
837 @lilypond[quote]
838 \include "font-table.ly"
839 \markuplines \override-lines #'(word-space . 4)
840              \doc-chars #mensural
841 @end lilypond
842
843
844 @node Neomensural glyphs
845 @unnumberedsubsec Neomensural glyphs
846 @translationof Neomensural glyphs
847
848 @lilypond[quote]
849 \include "font-table.ly"
850 \markuplines \override-lines #'(word-space . 4)
851              \doc-chars #neomensural
852 @end lilypond
853
854
855 @node Petrucci glyphs
856 @unnumberedsubsec Petrucci glyphs
857 @translationof Petrucci glyphs
858
859 @lilypond[quote]
860 \include "font-table.ly"
861 \markuplines \override-lines #'(word-space . 4)
862              \doc-chars #petrucci
863 @end lilypond
864
865
866 @node Solesmes glyphs
867 @unnumberedsubsec Solesmes glyphs
868 @translationof Solesmes glyphs
869
870 @lilypond[quote]
871 \include "font-table.ly"
872 \markuplines \override-lines #'(word-space . 4)
873              \doc-chars #solesmes
874 @end lilypond
875
876
877 @node Estilos de cabezas de nota
878 @appendixsec Estilos de cabezas de nota
879 @translationof Note head styles
880
881 @cindex nota, estilos de cabeza
882 Se pueden usar los siguientes estilos para las cabezas de las notas.
883
884 @lilypondfile[noindent]{note-head-style.ly}
885
886 @include markup-commands.tely
887
888 @include markup-list-commands.tely
889
890 @node Lista de articulaciones
891 @appendixsec Lista de articulaciones
892 @translationof List of articulations
893
894 @cindex accent
895 @cindex acento
896 @cindex apagado
897 @cindex arco abajo
898 @cindex arco arriba
899 @cindex calderón
900 @cindex coda
901 @cindex downbow
902 @cindex espressivo
903 @cindex fermata
904 @cindex flageolet
905 @cindex foot marks
906 @cindex grupeto circular
907 @cindex grupeto circular invertido
908 @cindex marcato
909 @cindex mordent
910 @cindex open
911 @cindex halfopen
912 @cindex organ pedal marks
913 @cindex pedal, indicaciones de
914 @cindex portato
915 @cindex prall
916 @cindex prallmordent
917 @cindex prallprall
918 @cindex reverseturn
919 @cindex segno
920 @cindex semitrino
921 @cindex semitrino descendente
922 @cindex staccatissimo
923 @cindex staccato
924 @cindex stopped
925 @cindex tenuto
926 @cindex thumb marking
927 @cindex trill
928 @cindex trino
929 @cindex turn
930 @cindex upbow
931 @cindex varcoda
932 @cindex órgano, indicaciones de pedal de
933
934
935 @lilypondfile[quote,texidoc]{script-chart.ly}
936
937
938 @node Notas de percusión
939 @appendixsec Notas de percusión
940 @translationof Percussion notes
941
942 @lilypondfile[quote]{percussion-chart.ly}
943
944
945 @node Glosario técnico
946 @appendixsec Glosario técnico
947 @translationof Technical glossary
948
949 Glosario de los términos técnicos y conceptos que se utilizan
950 internamente en LilyPond.  Estos términos pueden aparecer en los
951 manuales, en las listas de distribución de correo o en el código
952 fuente.
953
954 @menu
955 * alist::
956 * callback::
957 * closure::
958 * glyph::
959 * grob::
960 * immutable::
961 * interface::
962 * lexer::
963 * mutable::
964 * output-def::
965 * parser::
966 * parser variable::
967 * prob::
968 * simple closure::
969 * smob::
970 * stencil::
971 @end menu
972
973 @node alist
974 @unnumberedsubsec alist
975
976 @cindex alist
977 @cindex association list
978
979 @untranslated
980
981 @node callback
982 @unnumberedsubsec callback
983
984 @cindex callback
985
986 @untranslated
987
988 @node closure
989 @unnumberedsubsec closure
990
991 @cindex closure
992 @cindex simple closure
993
994 @untranslated
995
996 @node glyph
997 @unnumberedsubsec glyph
998
999 @cindex glyph
1000 @cindex font
1001 @cindex typeface
1002
1003 @untranslated
1004
1005 @seealso
1006 Referencia de la notación:
1007 @ref{Fonts},
1008 @ref{Text encoding}.
1009
1010
1011 @node grob
1012 @unnumberedsubsec grob
1013
1014 @cindex grob
1015 @cindex layout objects
1016 @cindex graphical objects
1017
1018 @untranslated
1019
1020 @seealso
1021 Manual de aprendizaje:
1022 @rlearning{Objects and interfaces},
1023 @rlearning{Naming conventions of objects and properties},
1024 @rlearning{Properties of layout objects}.
1025
1026 Referencia de funcionamiento interno:
1027 @rinternals{grob-interface},
1028 @rinternals{All layout objects}.
1029
1030
1031 @node immutable
1032 @unnumberedsubsec immutable
1033
1034 @cindex immutable objects
1035 @cindex immutable properties
1036 @cindex shared properties
1037
1038 @untranslated
1039
1040 @seealso
1041 Referencia de la notación:
1042 @ref{mutable}.
1043
1044 @node interface
1045 @unnumberedsubsec interface
1046
1047 @cindex interface
1048 @cindex grob-interface
1049 @cindex graphical object interfaces
1050
1051 @untranslated
1052
1053 @seealso
1054 Manual de aprendizaje:
1055 @rlearning{Objects and interfaces},
1056 @rlearning{Naming conventions of objects and properties},
1057 @rlearning{Properties found in interfaces}.
1058
1059 Referencia de la notación:
1060 @ref{Layout interfaces}.
1061
1062 Referencia de funcionamiento interno:
1063 @rinternals{Graphical Object Interfaces}.
1064
1065
1066 @node lexer
1067 @unnumberedsubsec lexer
1068
1069 @cindex lexer
1070 @cindex Flex
1071
1072 @untranslated
1073
1074 @node mutable
1075 @unnumberedsubsec mutable
1076
1077 @cindex mutable objects
1078 @cindex mutable properties
1079
1080 @untranslated
1081
1082 @seealso
1083 Referencia de la notación:
1084 @ref{immutable}.
1085
1086 @node output-def
1087 @unnumberedsubsec output-def
1088
1089 @cindex output-def
1090
1091 @untranslated
1092
1093 @node parser
1094 @unnumberedsubsec parser
1095
1096 @cindex parser
1097 @cindex Bison
1098 @cindex grammar for LilyPond
1099 @cindex BNF
1100
1101 @untranslated
1102
1103 @node parser variable
1104 @unnumberedsubsec parser variable
1105
1106 @cindex parser variable
1107 @cindex Scheme variable
1108 @cindex global variable
1109 @cindex afterGraceFraction
1110 @cindex musicQuotes
1111 @cindex mode
1112 @cindex output-count
1113 @cindex output-suffix
1114 @cindex parseStringResult
1115 @cindex partCombineListener
1116 @cindex pitchnames
1117 @cindex toplevel-bookparts
1118 @cindex toplevel-scores
1119 @cindex showLastLength
1120 @cindex showFirstLength
1121
1122 @untranslated
1123
1124 @node prob
1125 @unnumberedsubsec prob
1126
1127 @cindex prob
1128 @cindex property object
1129
1130 @untranslated
1131
1132 @node simple closure
1133 @unnumberedsubsec simple closure
1134
1135 Véase @ref{closure}.
1136
1137
1138 @node smob
1139 @unnumberedsubsec smob
1140
1141 @cindex smob
1142 @cindex Scheme object
1143
1144 @untranslated
1145
1146 @node stencil
1147 @unnumberedsubsec stencil
1148
1149 @cindex stencil
1150
1151 @untranslated
1152
1153 @seealso
1154 Referencia de funcionamiento interno:
1155 @rinternals{grob-interface}.
1156
1157
1158 @node Todas las propiedades de contexto
1159 @appendixsec Todas las propiedades de contexto
1160 @translationof All context properties
1161
1162 @include context-properties.tely
1163
1164
1165 @node Propiedades de disposición
1166 @appendixsec Propiedades de disposición
1167 @translationof Layout properties
1168
1169 @include layout-properties.tely
1170
1171
1172 @node Identificadores
1173 @appendixsec Identificadores
1174 @translationof Identifiers
1175
1176 @include identifiers.tely
1177
1178
1179 @node Funciones de Scheme
1180 @appendixsec Funciones de Scheme
1181 @translationof Scheme functions
1182
1183 @include scheme-functions.tely