]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/es/notation/notation-appendices.itely
Merge branch 'lilypond/translation' of ssh://git.sv.gnu.org/srv/git/lilypond
[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: da7ce7d651c3a0d1bfed695f6e952975937a1c79
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 * Carta 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 * Todas las propiedades de contexto::
48 * Propiedades de disposición::
49 * Identificadores::
50 * Funciones de Scheme::
51 @end menu
52
53
54
55 @node Carta de nombres de acordes
56 @appendixsec Carta de nombres de acordes
57 @translationof Chord name chart
58
59 Las siguientes tablas muestran dos sistemas estándar para imprimir los nombres de los acordes,
60 junto a las notas que representan.
61
62 @lilypondfile{chord-names-jazz.ly}
63
64 @node Modificadores de acorde más usuales
65 @appendixsec Modificadores de acorde más usuales
66 @translationof Common chord modifiers
67
68 La tabla siguiente presenta los modificadores de acorde que se pueden
69 usar en el modo de acordes @code{\chordmode} para generar las
70 estructuras de acordes estándar.
71
72 @multitable @columnfractions .2 .3 .2 .2
73
74 @item
75 @b{Tipo de acorde}
76 @tab
77 @b{Intervalos}
78 @tab
79 @b{Modificador(es)}
80 @tab
81 @b{Ejemplo}
82
83
84 @item
85 Mayor
86 @tab
87 Tercera mayor y quinta justa
88 @tab
89 @code{5} o nada
90 @tab
91 @lilypond[line-width=3\cm,noragged-right, notime]
92 \chordmode {
93   c1:5
94 }
95 @end lilypond
96
97 @item
98 Menor
99 @tab
100 Tercera menor y quinta justa
101 @tab
102 @code{m} o @code{m5}
103 @tab
104 @lilypond[line-width=3\cm,noragged-right, notime]
105 \chordmode {
106   c1:m
107 }
108 @end lilypond
109
110 @item
111 Aumentado
112 @tab
113 Tercera mayor y quinta aumentada
114 @tab
115 @code{aug}
116 @tab
117 @lilypond[line-width=3\cm,noragged-right, notime]
118 \chordmode {
119   c1:aug
120 }
121 @end lilypond
122
123 @item
124 Disminuido
125 @tab
126 Tercera menor y quinta disminuida
127 @tab
128 @code{dim}
129 @tab
130 @lilypond[line-width=3\cm,noragged-right, notime]
131 \chordmode {
132   c1:dim
133 }
134 @end lilypond
135
136 @item
137 Séptima dominante
138 @tab
139 Tríada mayor con séptima menor
140 @tab
141 @code{7}
142 @tab
143 @lilypond[line-width=3\cm,noragged-right, notime]
144 \chordmode {
145   c1:7
146 }
147 @end lilypond
148
149 @item
150 Séptima mayor
151 @tab
152 Tríada mayor y séptima mayor
153 @tab
154 @code{maj7} ó @code{maj}
155 @tab
156 @lilypond[line-width=3\cm,noragged-right, notime]
157 \chordmode {
158   c1:maj7
159 }
160 @end lilypond
161
162 @item
163 Séptima menor
164 @tab
165 Tríada menor y séptima menor
166 @tab
167 @code{m7}
168 @tab
169 @lilypond[line-width=3\cm,noragged-right, notime]
170 \chordmode {
171   c1:m7
172 }
173 @end lilypond
174
175 @item
176 Séptima disminuida
177 @tab
178 Tríada disminuida y séptima disminuida
179 @tab
180 @code{dim7}
181 @tab
182 @lilypond[line-width=3\cm,noragged-right, notime]
183 \chordmode {
184   c1:dim7
185 }
186 @end lilypond
187
188 @item
189 Aumentado con séptima
190 @tab
191 Tríada aumentada y séptima menor
192 @tab
193 @code{aug7}
194 @tab
195 @lilypond[line-width=3\cm,noragged-right, notime]
196 \chordmode {
197   c1:aug7
198 }
199 @end lilypond
200
201 @item
202 Séptima semi-disminuido
203 @tab
204 Tríada disminuida y séptima menor
205 @tab
206 @code{m7.5-}
207 @tab
208 @lilypond[line-width=3\cm,noragged-right, notime]
209 \chordmode {
210   c1:dim5m7
211 }
212 @end lilypond
213
214 @item
215 Menor con séptima mayor
216 @tab
217 Tríada menor con séptima mayor
218 @tab
219 @code{maj7.5-}
220 @tab
221 @lilypond[line-width=3\cm,noragged-right, notime]
222 \chordmode {
223   c1:maj7.5-
224 }
225 @end lilypond
226
227 @item
228 Mayor con sexta
229 @tab
230 Tríada mayor y sexta
231 @tab
232 @code{6}
233 @tab
234 @lilypond[line-width=3\cm,noragged-right, notime]
235 \chordmode {
236   c1:6
237 }
238 @end lilypond
239
240 @item
241 Menor con sexta
242 @tab
243 Tríada menor y sexta
244 @tab
245 @code{m6}
246 @tab
247 @lilypond[line-width=3\cm,noragged-right, notime]
248 \chordmode {
249   c1:m6
250 }
251 @end lilypond
252
253 @item
254 Novena dominante
255 @tab
256 Séptima dominante con novena mayor
257 @tab
258 @code{9}
259 @tab
260 @lilypond[line-width=3\cm,noragged-right, notime]
261 \chordmode {
262   c1:9
263 }
264 @end lilypond
265
266 @item
267 Mayor con novena
268 @tab
269 Séptima mayor y novena mayor
270 @tab
271 @code{maj9}
272 @tab
273 @lilypond[line-width=3\cm,noragged-right, notime]
274 \chordmode {
275   c1:maj9
276 }
277 @end lilypond
278
279 @item
280 Menor con novena
281 @tab
282 Séptima menor y novena mayor
283 @tab
284 @code{m9}
285 @tab
286 @lilypond[line-width=3\cm,noragged-right, notime]
287 \chordmode {
288   c1:m9
289 }
290 @end lilypond
291
292 @item
293 Oncena dominante
294 @tab
295 Novena dominante con oncena justa
296 @tab
297 @code{11}
298 @tab
299 @lilypond[line-width=3\cm,noragged-right, notime]
300 \chordmode {
301   c1:11
302 }
303 @end lilypond
304
305 @item
306 Oncena mayor
307 @tab
308 Novena mayor y oncena justa
309 @tab
310 @code{maj11}
311 @tab
312 @lilypond[line-width=3\cm,noragged-right, notime]
313 \chordmode {
314   c1:maj11
315 }
316 @end lilypond
317
318 @item
319 Menor con oncena
320 @tab
321 Novena menor y oncena justa
322 @tab
323 @code{m11}
324 @tab
325 @lilypond[line-width=3\cm,noragged-right, notime]
326 \chordmode {
327   c1:m11
328 }
329 @end lilypond
330
331 @item
332 Trecena dominante
333 @tab
334 Novena dominante y trecena mayor
335 @tab
336 @code{13}
337 @tab
338 @lilypond[line-width=3\cm,noragged-right, notime]
339 \chordmode {
340   c1:13
341 }
342 @end lilypond
343
344 @item
345 Trecena dominante
346 @tab
347 Oncena dominante y trecena mayor
348 @tab
349 @code{13.11}
350 @tab
351 @lilypond[line-width=3\cm,noragged-right, notime]
352 \chordmode {
353   c1:13.11
354 }
355 @end lilypond
356
357 @item
358 Mayor con trecena
359 @tab
360 Oncena mayor y trecena mayor
361 @tab
362 @code{maj13.11}
363 @tab
364 @lilypond[line-width=3\cm,noragged-right, notime]
365 \chordmode {
366   c1:maj13.11
367 }
368 @end lilypond
369
370 @item
371 Menor con trecena
372 @tab
373 Oncena menor y trecena mayor
374 @tab
375 @code{m13.11}
376 @tab
377 @lilypond[line-width=3\cm,noragged-right, notime]
378 \chordmode {
379   c1:m13.11
380 }
381 @end lilypond
382
383 @item
384 Segunda suspendida
385 @tab
386 Segunda mayor y quinta justa
387 @tab
388 @code{sus2}
389 @tab
390 @lilypond[line-width=3\cm,noragged-right, notime]
391 \chordmode {
392   c1:sus2
393 }
394 @end lilypond
395
396 @item
397 Cuarta suspendida
398 @tab
399 Cuarta justa y quinta justa
400 @tab
401 @code{sus4}
402 @tab
403 @lilypond[line-width=3\cm,noragged-right, notime]
404 \chordmode {
405   c1:sus4
406 }
407 @end lilypond
408
409
410 @end multitable
411
412 @node Diagramas predefinidos de trastes
413 @appendixsec Diagramas predefinidos de trastes
414 @translationof Predefined fretboard diagrams
415
416 El cuadro siguiente presenta los diagramas de traste predefinidos.
417
418 @lilypondfile{display-predefined-fretboards.ly}
419
420
421 @node Instrumentos MIDI
422 @appendixsec Instrumentos MIDI
423 @translationof MIDI instruments
424
425 A continuación figura una lista con los nombres que se pueden utilizar para la
426 propiedad @code{midiInstrument} (instrumento MIDI).
427
428 @example
429 acoustic grand            contrabass           lead 7 (fifths)
430 bright acoustic           tremolo strings      lead 8 (bass+lead)
431 electric grand            pizzicato strings    pad 1 (new age)
432 honky-tonk                orchestral harp      pad 2 (warm)
433 electric piano 1          timpani              pad 3 (polysynth)
434 electric piano 2          string ensemble 1    pad 4 (choir)
435 harpsichord               string ensemble 2    pad 5 (bowed)
436 clav                      synthstrings 1       pad 6 (metallic)
437 celesta                   synthstrings 2       pad 7 (halo)
438 glockenspiel              choir aahs           pad 8 (sweep)
439 music box                 voice oohs           fx 1 (rain)
440 vibraphone                synth voice          fx 2 (soundtrack)
441 marimba                   orchestra hit        fx 3 (crystal)
442 xylophone                 trumpet              fx 4 (atmosphere)
443 tubular bells             trombone             fx 5 (brightness)
444 dulcimer                  tuba                 fx 6 (goblins)
445 drawbar organ             muted trumpet        fx 7 (echoes)
446 percussive organ          french horn          fx 8 (sci-fi)
447 rock organ                brass section        sitar
448 church organ              synthbrass 1         banjo
449 reed organ                synthbrass 2         shamisen
450 accordion                 soprano sax          koto
451 harmonica                 alto sax             kalimba
452 concertina                tenor sax            bagpipe
453 acoustic guitar (nylon)   baritone sax         fiddle
454 acoustic guitar (steel)   oboe                 shanai
455 electric guitar (jazz)    english horn         tinkle bell
456 electric guitar (clean)   bassoon              agogo
457 electric guitar (muted)   clarinet             steel drums
458 overdriven guitar         piccolo              woodblock
459 distorted guitar          flute                taiko drum
460 guitar harmonics          recorder             melodic tom
461 acoustic bass             pan flute            synth drum
462 electric bass (finger)    blown bottle         reverse cymbal
463 electric bass (pick)      shakuhachi           guitar fret noise
464 fretless bass             whistle              breath noise
465 slap bass 1               ocarina              seashore
466 slap bass 2               lead 1 (square)      bird tweet
467 synth bass 1              lead 2 (sawtooth)    telephone ring
468 synth bass 2              lead 3 (calliope)    helicopter
469 violin                    lead 4 (chiff)       applause
470 viola                     lead 5 (charang)     gunshot
471 cello                     lead 6 (voice)
472 @end example
473
474
475 @node Lista de colores
476 @appendixsec Lista de colores
477 @translationof List of colors
478
479 @subsubheading Colores normales
480
481 La sintaxis para el uso de colores se encuentra detallada en @ref{Colorear objetos}.
482
483 @cindex lista de colores
484 @cindex colores, lista de
485
486 @verbatim
487 black       white          red         green
488 blue        cyan           magenta     yellow
489 grey        darkred        darkgreen   darkblue
490 darkcyan    darkmagenta    darkyellow
491 @end verbatim
492
493
494 @subsubheading Nombres de los colores de X
495
496 Los nombres de los colores de X admiten algunas variantes:
497
498 Un nombre que se escribe como una palabra única con mayúsculas
499 intercaladas (p.ej. @q{LightSlateBlue}) se puede escribir también como
500 palabras separadas por espacios y sin mayúsculas (p.ej. @q{light slate
501 blue}).
502
503 La palabra @q{grey} siempre se puede escribir como @q{gray} (p.ej. @q{DarkSlateGray}).
504
505 Algunos nombres admiten un sufijo numérico (p.ej. @q{LightSalmon4}).
506
507
508 @subsubheading Nombres de los colores sin sufijo numérico:
509
510 @verbatim
511 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
512 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
513 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
514 ivory           LemonChiffon    seashell        honeydew        MintCream
515 azure           AliceBlue       lavender        LavenderBlush   MistyRose
516 white           black           DarkSlateGrey   DimGrey         SlateGrey
517 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
518 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
519 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
520 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
521 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
522 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
523 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
524 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
525 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
526 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
527 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
528 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
529 SaddleBrown     sienna          peru            burlywood       beige
530 wheat           SandyBrown      tan             chocolate       firebrick
531 brown           DarkSalmon      salmon          LightSalmon     orange
532 DarkOrange      coral           LightCoral      tomato          OrangeRed
533 red             HotPink         DeepPink        pink            LightPink
534 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
535 violet          plum            orchid          MediumOrchid    DarkOrchid
536 DarkViolet      BlueViolet      purple          MediumPurple    thistle
537 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
538 LightGreen
539 @end verbatim
540
541
542 @subsubheading Nombres de los colores con sufijo numérico
543
544 En los nombres siguientes, el sufijo N puede ser un número del 1 al 4:
545
546 @verbatim
547 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
548 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
549 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
550 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
551 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
552 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
553 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
554 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
555 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
556 IndianRedN      siennaN         burlywoodN      wheatN          tanN
557 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
558 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
559 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
560 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
561 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
562 thistleN
563 @end verbatim
564
565
566 @subsubheading Escala de grises
567
568 Se puede obtener una escala de grises utilizando:
569
570 @example
571 greyN
572 @end example
573
574 @noindent
575 donde N es un número entre 0 y 100.
576
577
578 @node La tipografía Feta
579 @appendixsec La tipografía Feta
580 @translationof The Feta font
581
582 @cindex Feta, tipografía
583 @cindex tipografía Feta
584
585 Los símbolos siguientes están disponibles en la tipografía Emmentaler
586 y es posible acceder a ellos directamente utilizando elementos de
587 marcado textual como @code{g^\markup @{ \musicglyph #"scripts.segno"
588 @}}, véase @ref{Formatear el texto}.
589
590 @menu
591 * Clef glyphs::
592 * Time Signature glyphs::
593 * Number glyphs::
594 * Accidental glyphs::
595 * Default Notehead glyphs::
596 * Special Notehead glyphs::
597 * Shape-note Notehead glyphs::
598 * Rest glyphs::
599 * Flag glyphs::
600 * Dot glyphs::
601 * Dynamic glyphs::
602 * Script glyphs::
603 * Arrowhead glyphs::
604 * Bracket-tip glyphs::
605 * Pedal glyphs::
606 * Accordion glyphs::
607 * Vaticana glyphs::
608 * Medicaea glyphs::
609 * Hufnagel glyphs::
610 * Mensural glyphs::
611 * Neomensural glyphs::
612 * Petrucci glyphs::
613 * Solesmes glyphs::
614 @end menu
615
616
617 @node Clef glyphs
618 @unnumberedsubsec Clef glyphs
619 @translationof Clef glyphs
620
621 @lilypond[quote]
622 \include "font-table.ly"
623 \markuplines \override-lines #'(word-space . 4)
624              \doc-chars #clefs
625 @end lilypond
626
627
628 @node Time Signature glyphs
629 @unnumberedsubsec Time Signature glyphs
630 @translationof Time Signature glyphs
631
632 @lilypond[quote]
633 \include "font-table.ly"
634 \markuplines \override-lines #'(word-space . 4)
635              \doc-chars #timesig
636 @end lilypond
637
638
639 @node Number glyphs
640 @unnumberedsubsec Number glyphs
641 @translationof Number glyphs
642
643 @lilypond[quote]
644 \include "font-table.ly"
645 \markuplines \override-lines #'(word-space . 4)
646              \doc-chars #numbers
647 @end lilypond
648
649
650 @node Accidental glyphs
651 @unnumberedsubsec Accidental glyphs
652 @translationof Accidental glyphs
653
654 @lilypond[quote]
655 \include "font-table.ly"
656 \markuplines \override-lines #'(word-space . 4)
657              \doc-chars #accidentals
658 @end lilypond
659
660
661 @node Default Notehead glyphs
662 @unnumberedsubsec Default Notehead glyphs
663 @translationof Default Notehead glyphs
664
665 @lilypond[quote]
666 \include "font-table.ly"
667 \markuplines \override-lines #'(word-space . 4)
668              \doc-chars #default-noteheads
669 @end lilypond
670
671
672 @node Special Notehead glyphs
673 @unnumberedsubsec Special Notehead glyphs
674 @translationof Special Notehead glyphs
675
676 @lilypond[quote]
677 \include "font-table.ly"
678 \markuplines \override-lines #'(word-space . 4)
679              \doc-chars #special-noteheads
680 @end lilypond
681
682
683 @node Shape-note Notehead glyphs
684 @unnumberedsubsec Shape-note Notehead glyphs
685 @translationof Shape-note Notehead glyphs
686
687 @lilypond[quote]
688 \include "font-table.ly"
689 \markuplines \override-lines #'(word-space . 4)
690              \doc-chars #shape-note-noteheads
691 @end lilypond
692
693
694 @node Rest glyphs
695 @unnumberedsubsec Rest glyphs
696 @translationof Rest glyphs
697
698 @lilypond[quote]
699 \include "font-table.ly"
700 \markuplines \override-lines #'(word-space . 4)
701              \doc-chars #rests
702 @end lilypond
703
704
705 @node Flag glyphs
706 @unnumberedsubsec Flag glyphs
707 @translationof Flag glyphs
708
709 @lilypond[quote]
710 \include "font-table.ly"
711 \markuplines \override-lines #'(word-space . 4)
712              \doc-chars #flags
713 @end lilypond
714
715
716 @node Dot glyphs
717 @unnumberedsubsec Dot glyphs
718 @translationof Dot glyphs
719
720 @lilypond[quote]
721 \include "font-table.ly"
722 \markuplines \override-lines #'(word-space . 4)
723              \doc-chars #dots
724 @end lilypond
725
726
727 @node Dynamic glyphs
728 @unnumberedsubsec Dynamic glyphs
729 @translationof Dynamic glyphs
730
731 @lilypond[quote]
732 \include "font-table.ly"
733 \markuplines \override-lines #'(word-space . 4)
734              \doc-chars #dynamics
735 @end lilypond
736
737
738 @node Script glyphs
739 @unnumberedsubsec Script glyphs
740 @translationof Script glyphs
741
742 @lilypond[quote]
743 \include "font-table.ly"
744 \markuplines \override-lines #'(word-space . 4)
745              \doc-chars #scripts
746 @end lilypond
747
748
749 @node Arrowhead glyphs
750 @unnumberedsubsec Arrowhead glyphs
751 @translationof Arrowhead glyphs
752
753 @lilypond[quote]
754 \include "font-table.ly"
755 \markuplines \override-lines #'(word-space . 4)
756              \doc-chars #arrowheads
757 @end lilypond
758
759
760 @node Bracket-tip glyphs
761 @unnumberedsubsec Bracket-tip glyphs
762 @translationof Bracket-tip glyphs
763
764 @lilypond[quote]
765 \include "font-table.ly"
766 \markuplines \override-lines #'(word-space . 4)
767              \doc-chars #brackettips
768 @end lilypond
769
770
771 @node Pedal glyphs
772 @unnumberedsubsec Pedal glyphs
773 @translationof Pedal glyphs
774
775 @lilypond[quote]
776 \include "font-table.ly"
777 \markuplines \override-lines #'(word-space . 4)
778              \doc-chars #pedal
779 @end lilypond
780
781
782 @node Accordion glyphs
783 @unnumberedsubsec Accordion glyphs
784 @translationof Accordion glyphs
785
786 @lilypond[quote]
787 \include "font-table.ly"
788 \markuplines \override-lines #'(word-space . 4)
789              \doc-chars #accordion
790 @end lilypond
791
792
793 @node Vaticana glyphs
794 @unnumberedsubsec Vaticana glyphs
795 @translationof Vaticana glyphs
796
797 @lilypond[quote]
798 \include "font-table.ly"
799 \markuplines \override-lines #'(word-space . 4)
800              \doc-chars #vaticana
801 @end lilypond
802
803
804 @node Medicaea glyphs
805 @unnumberedsubsec Medicaea glyphs
806 @translationof Medicaea glyphs
807
808 @lilypond[quote]
809 \include "font-table.ly"
810 \markuplines \override-lines #'(word-space . 4)
811              \doc-chars #medicaea
812 @end lilypond
813
814
815 @node Hufnagel glyphs
816 @unnumberedsubsec Hufnagel glyphs
817 @translationof Hufnagel glyphs
818
819 @lilypond[quote]
820 \include "font-table.ly"
821 \markuplines \override-lines #'(word-space . 4)
822              \doc-chars #hufnagel
823 @end lilypond
824
825
826 @node Mensural glyphs
827 @unnumberedsubsec Mensural glyphs
828 @translationof Mensural glyphs
829
830 @lilypond[quote]
831 \include "font-table.ly"
832 \markuplines \override-lines #'(word-space . 4)
833              \doc-chars #mensural
834 @end lilypond
835
836
837 @node Neomensural glyphs
838 @unnumberedsubsec Neomensural glyphs
839 @translationof Neomensural glyphs
840
841 @lilypond[quote]
842 \include "font-table.ly"
843 \markuplines \override-lines #'(word-space . 4)
844              \doc-chars #neomensural
845 @end lilypond
846
847
848 @node Petrucci glyphs
849 @unnumberedsubsec Petrucci glyphs
850 @translationof Petrucci glyphs
851
852 @lilypond[quote]
853 \include "font-table.ly"
854 \markuplines \override-lines #'(word-space . 4)
855              \doc-chars #petrucci
856 @end lilypond
857
858
859 @node Solesmes glyphs
860 @unnumberedsubsec Solesmes glyphs
861 @translationof Solesmes glyphs
862
863 @lilypond[quote]
864 \include "font-table.ly"
865 \markuplines \override-lines #'(word-space . 4)
866              \doc-chars #solesmes
867 @end lilypond
868
869
870 @node Estilos de cabezas de nota
871 @appendixsec Estilos de cabezas de nota
872 @translationof Note head styles
873
874 @cindex nota, estilos de cabeza
875 Se pueden usar los siguientes estilos para las cabezas de las notas.
876
877 @lilypondfile[noindent]{note-head-style.ly}
878
879 @include markup-commands.tely
880
881 @include markup-list-commands.tely
882
883 @node Lista de articulaciones
884 @appendixsec Lista de articulaciones
885 @translationof List of articulations
886
887 @cindex accent
888 @cindex acento
889 @cindex apagado
890 @cindex arco abajo
891 @cindex arco arriba
892 @cindex calderón
893 @cindex coda
894 @cindex downbow
895 @cindex espressivo
896 @cindex fermata
897 @cindex flageolet
898 @cindex foot marks
899 @cindex grupeto circular
900 @cindex grupeto circular invertido
901 @cindex marcato
902 @cindex mordent
903 @cindex open
904 @cindex halfopen
905 @cindex organ pedal marks
906 @cindex pedal, indicaciones de
907 @cindex portato
908 @cindex prall
909 @cindex prallmordent
910 @cindex prallprall
911 @cindex reverseturn
912 @cindex segno
913 @cindex semitrino
914 @cindex semitrino descendente
915 @cindex staccatissimo
916 @cindex staccato
917 @cindex stopped
918 @cindex tenuto
919 @cindex thumb marking
920 @cindex trill
921 @cindex trino
922 @cindex turn
923 @cindex upbow
924 @cindex varcoda
925 @cindex órgano, indicaciones de pedal de
926
927
928 @lilypondfile[quote,texidoc]{script-chart.ly}
929
930
931 @node Notas de percusión
932 @appendixsec Notas de percusión
933 @translationof Percussion notes
934
935 @lilypondfile[quote]{percussion-chart.ly}
936
937
938 @node Todas las propiedades de contexto
939 @appendixsec Todas las propiedades de contexto
940 @translationof All context properties
941
942 @include context-properties.tely
943
944
945 @node Propiedades de disposición
946 @appendixsec Propiedades de disposición
947 @translationof Layout properties
948
949 @include layout-properties.tely
950
951
952 @node Identificadores
953 @appendixsec Identificadores
954 @translationof Identifiers
955
956 @include identifiers.tely
957
958
959 @node Funciones de Scheme
960 @appendixsec Funciones de Scheme
961 @translationof Scheme functions
962
963 @include scheme-functions.tely