]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation-appendices.itely
bba5f751b1134d6d8a7a7b97a4b9483340dd394e
[lilypond.git] / Documentation / 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: FILL-IN-HEAD-COMMITTISH
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.12.0"
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 The following charts shows two standard systems for printing chord
57 names, along with the pitches they represent.
58
59 @lilypondfile{chord-names-jazz.ly}
60
61 @node Common chord modifiers
62 @appendixsec Common chord modifiers
63
64 The following table shows chord modifiers that can be used in
65 @code{\chordmode} to generate standard chord structures.
66
67 @multitable @columnfractions .2 .3 .2 .2
68
69 @item
70 @b{Chord type}
71 @tab
72 @b{Intervals}
73 @tab
74 @b{Modifier(s)}
75 @tab
76 @b{Example}
77
78
79 @item
80 Major
81 @tab
82 Major third, perfect fifth
83 @tab
84 @code{5} or nothing
85 @tab
86 @lilypond[line-width=3\cm,noragged-right, notime]
87 \chordmode {
88   c1:5
89 }
90 @end lilypond
91
92 @item
93 Minor
94 @tab
95 Minor third, perfect fifth
96 @tab
97 @code{m} or @code{m5}
98 @tab
99 @lilypond[line-width=3\cm,noragged-right, notime]
100 \chordmode {
101   c1:m
102 }
103 @end lilypond
104
105 @item
106 Augmented
107 @tab
108 Major third, augmented fifth
109 @tab
110 @code{aug}
111 @tab
112 @lilypond[line-width=3\cm,noragged-right, notime]
113 \chordmode {
114   c1:aug
115 }
116 @end lilypond
117
118 @item
119 Diminished
120 @tab
121 Minor third, diminished fifth
122 @tab
123 @code{dim}
124 @tab
125 @lilypond[line-width=3\cm,noragged-right, notime]
126 \chordmode {
127   c1:dim
128 }
129 @end lilypond
130
131 @item
132 Dominant seventh
133 @tab
134 Major triad, minor seventh
135 @tab
136 @code{7}
137 @tab
138 @lilypond[line-width=3\cm,noragged-right, notime]
139 \chordmode {
140   c1:7
141 }
142 @end lilypond
143
144 @item
145 Major seventh
146 @tab
147 Major triad, major seventh
148 @tab
149 @code{maj7} or @code{maj}
150 @tab
151 @lilypond[line-width=3\cm,noragged-right, notime]
152 \chordmode {
153   c1:maj7
154 }
155 @end lilypond
156
157 @item
158 Minor seventh
159 @tab
160 Minor triad, minor seventh
161 @tab
162 @code{m7}
163 @tab
164 @lilypond[line-width=3\cm,noragged-right, notime]
165 \chordmode {
166   c1:m7
167 }
168 @end lilypond
169
170 @item
171 Diminished seventh
172 @tab
173 Diminished triad, diminished seventh
174 @tab
175 @code{dim7}
176 @tab
177 @lilypond[line-width=3\cm,noragged-right, notime]
178 \chordmode {
179   c1:dim7
180 }
181 @end lilypond
182
183 @item
184 Augmented seventh
185 @tab
186 Augmented triad, minor seventh
187 @tab
188 @code{aug7}
189 @tab
190 @lilypond[line-width=3\cm,noragged-right, notime]
191 \chordmode {
192   c1:aug7
193 }
194 @end lilypond
195
196 @item
197 Half-diminished seventh
198 @tab
199 Diminished triad, minor seventh
200 @tab
201 @code{m7.5-}
202 @tab
203 @lilypond[line-width=3\cm,noragged-right, notime]
204 \chordmode {
205   c1:m7.5-
206 }
207 @end lilypond
208
209 @item
210 Minor-major seventh
211 @tab
212 Minor triad, major seventh
213 @tab
214 @code{maj7.5-}
215 @tab
216 @lilypond[line-width=3\cm,noragged-right, notime]
217 \chordmode {
218   c1:maj7.5-
219 }
220 @end lilypond
221
222 @item
223 Major sixth
224 @tab
225 Major triad, sixth
226 @tab
227 @code{6}
228 @tab
229 @lilypond[line-width=3\cm,noragged-right, notime]
230 \chordmode {
231   c1:6
232 }
233 @end lilypond
234
235 @item
236 Minor sixth
237 @tab
238 Minor triad, sixth
239 @tab
240 @code{m6}
241 @tab
242 @lilypond[line-width=3\cm,noragged-right, notime]
243 \chordmode {
244   c1:m6
245 }
246 @end lilypond
247
248 @item
249 Dominant ninth
250 @tab
251 Dominant seventh, major ninth
252 @tab
253 @code{9}
254 @tab
255 @lilypond[line-width=3\cm,noragged-right, notime]
256 \chordmode {
257   c1:9
258 }
259 @end lilypond
260
261 @item
262 Major ninth
263 @tab
264 Major seventh, major ninth
265 @tab
266 @code{maj9}
267 @tab
268 @lilypond[line-width=3\cm,noragged-right, notime]
269 \chordmode {
270   c1:maj9
271 }
272 @end lilypond
273
274 @item
275 Minor ninth
276 @tab
277 Minor seventh, major ninth
278 @tab
279 @code{m9}
280 @tab
281 @lilypond[line-width=3\cm,noragged-right, notime]
282 \chordmode {
283   c1:m9
284 }
285 @end lilypond
286
287 @item
288 Dominant eleventh
289 @tab
290 Dominant ninth, perfect eleventh
291 @tab
292 @code{11}
293 @tab
294 @lilypond[line-width=3\cm,noragged-right, notime]
295 \chordmode {
296   c1:11
297 }
298 @end lilypond
299
300 @item
301 Major eleventh
302 @tab
303 Major ninth, perfect eleventh
304 @tab
305 @code{maj11}
306 @tab
307 @lilypond[line-width=3\cm,noragged-right, notime]
308 \chordmode {
309   c1:maj11
310 }
311 @end lilypond
312
313 @item
314 Minor eleventh
315 @tab
316 Minor ninth, perfect eleventh
317 @tab
318 @code{m11}
319 @tab
320 @lilypond[line-width=3\cm,noragged-right, notime]
321 \chordmode {
322   c1:m11
323 }
324 @end lilypond
325
326 @item
327 Dominant thirteenth
328 @tab
329 Dominant ninth, major thirteenth
330 @tab
331 @code{13}
332 @tab
333 @lilypond[line-width=3\cm,noragged-right, notime]
334 \chordmode {
335   c1:13
336 }
337 @end lilypond
338
339 @item
340 Dominant thirteenth
341 @tab
342 Dominant eleventh, major thirteenth
343 @tab
344 @code{13.11}
345 @tab
346 @lilypond[line-width=3\cm,noragged-right, notime]
347 \chordmode {
348   c1:13.11
349 }
350 @end lilypond
351
352 @item
353 Major thirteenth
354 @tab
355 Major eleventh, major thirteenth
356 @tab
357 @code{maj13.11}
358 @tab
359 @lilypond[line-width=3\cm,noragged-right, notime]
360 \chordmode {
361   c1:maj13.11
362 }
363 @end lilypond
364
365 @item
366 Minor thirteenth
367 @tab
368 Minor eleventh, major thirteenth
369 @tab
370 @code{m13.11}
371 @tab
372 @lilypond[line-width=3\cm,noragged-right, notime]
373 \chordmode {
374   c1:m13.11
375 }
376 @end lilypond
377
378 @item
379 Suspended second
380 @tab
381 Major second, perfect fifth
382 @tab
383 @code{sus2}
384 @tab
385 @lilypond[line-width=3\cm,noragged-right, notime]
386 \chordmode {
387   c1:sus2
388 }
389 @end lilypond
390
391 @item
392 Suspended fourth
393 @tab
394 Perfect fourth, perfect fifth
395 @tab
396 @code{sus4}
397 @tab
398 @lilypond[line-width=3\cm,noragged-right, notime]
399 \chordmode {
400   c1:sus4
401 }
402 @end lilypond
403
404
405 @end multitable
406
407 @node Predefined fretboard diagrams
408 @appendixsec Predefined fretboard diagrams
409
410 The chart below shows the predefined fretboard diagrams.
411
412 @lilypondfile{display-predefined-fretboards.ly}
413
414 @node MIDI instruments
415 @appendixsec MIDI instruments
416
417 The following is a list of names that can be used for the
418 @code{midiInstrument} property.
419
420 @example
421 acoustic grand            contrabass           lead 7 (fifths)
422 bright acoustic           tremolo strings      lead 8 (bass+lead)
423 electric grand            pizzicato strings    pad 1 (new age)
424 honky-tonk                orchestral harp      pad 2 (warm)
425 electric piano 1          timpani              pad 3 (polysynth)
426 electric piano 2          string ensemble 1    pad 4 (choir)
427 harpsichord               string ensemble 2    pad 5 (bowed)
428 clav                      synthstrings 1       pad 6 (metallic)
429 celesta                   synthstrings 2       pad 7 (halo)
430 glockenspiel              choir aahs           pad 8 (sweep)
431 music box                 voice oohs           fx 1 (rain)
432 vibraphone                synth voice          fx 2 (soundtrack)
433 marimba                   orchestra hit        fx 3 (crystal)
434 xylophone                 trumpet              fx 4 (atmosphere)
435 tubular bells             trombone             fx 5 (brightness)
436 dulcimer                  tuba                 fx 6 (goblins)
437 drawbar organ             muted trumpet        fx 7 (echoes)
438 percussive organ          french horn          fx 8 (sci-fi)
439 rock organ                brass section        sitar
440 church organ              synthbrass 1         banjo
441 reed organ                synthbrass 2         shamisen
442 accordion                 soprano sax          koto
443 harmonica                 alto sax             kalimba
444 concertina                tenor sax            bagpipe
445 acoustic guitar (nylon)   baritone sax         fiddle
446 acoustic guitar (steel)   oboe                 shanai
447 electric guitar (jazz)    english horn         tinkle bell
448 electric guitar (clean)   bassoon              agogo
449 electric guitar (muted)   clarinet             steel drums
450 overdriven guitar         piccolo              woodblock
451 distorted guitar          flute                taiko drum
452 guitar harmonics          recorder             melodic tom
453 acoustic bass             pan flute            synth drum
454 electric bass (finger)    blown bottle         reverse cymbal
455 electric bass (pick)      shakuhachi           guitar fret noise
456 fretless bass             whistle              breath noise
457 slap bass 1               ocarina              seashore
458 slap bass 2               lead 1 (square)      bird tweet
459 synth bass 1              lead 2 (sawtooth)    telephone ring
460 synth bass 2              lead 3 (calliope)    helicopter
461 violin                    lead 4 (chiff)       applause
462 viola                     lead 5 (charang)     gunshot
463 cello                     lead 6 (voice)
464 @end example
465
466
467 @node List of colors
468 @appendixsec List of colors
469
470 @subsubheading Normal colors
471
472 Usage syntax is detailed in @ref{Coloring objects}.
473
474 @cindex List of colors
475 @cindex Colors, list of
476
477 @verbatim
478 black       white          red         green
479 blue        cyan           magenta     yellow
480 grey        darkred        darkgreen   darkblue
481 darkcyan    darkmagenta    darkyellow
482 @end verbatim
483
484
485 @subsubheading X color names
486
487 X color names come several variants:
488
489 Any name that is spelled as a single word with capitalization
490 (e.g. @q{LightSlateBlue}) can also be spelled as space separated
491 words without capitalization (e.g. @q{light slate blue}).
492
493 The word @q{grey} can always be spelled @q{gray} (e.g. @q{DarkSlateGray}).
494
495 Some names can take a numerical suffix (e.g. @q{LightSalmon4}).
496
497
498 @subsubheading Color Names without a numerical suffix:
499
500 @verbatim
501 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
502 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
503 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
504 ivory           LemonChiffon    seashell        honeydew        MintCream
505 azure           AliceBlue       lavender        LavenderBlush   MistyRose
506 white           black           DarkSlateGrey   DimGrey         SlateGrey
507 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
508 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
509 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
510 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
511 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
512 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
513 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
514 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
515 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
516 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
517 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
518 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
519 SaddleBrown     sienna          peru            burlywood       beige
520 wheat           SandyBrown      tan             chocolate       firebrick
521 brown           DarkSalmon      salmon          LightSalmon     orange
522 DarkOrange      coral           LightCoral      tomato          OrangeRed
523 red             HotPink         DeepPink        pink            LightPink
524 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
525 violet          plum            orchid          MediumOrchid    DarkOrchid
526 DarkViolet      BlueViolet      purple          MediumPurple    thistle
527 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
528 LightGreen
529 @end verbatim
530
531
532 @subsubheading Color names with a numerical suffix
533
534 In the following names the suffix N can be a number in the range 1-4:
535
536 @verbatim
537 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
538 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
539 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
540 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
541 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
542 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
543 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
544 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
545 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
546 IndianRedN      siennaN         burlywoodN      wheatN          tanN
547 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
548 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
549 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
550 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
551 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
552 thistleN
553 @end verbatim
554
555
556 @subsubheading Grey Scale
557
558 A grey scale can be obtained using:
559
560 @example
561 greyN
562 @end example
563
564 @noindent
565 Where N is in the range 0-100.
566
567
568 @node The Feta font
569 @appendixsec The Feta font
570
571 @cindex Feta font
572 @cindex Font, Feta
573
574 The following symbols are available in the Emmentaler font and may be
575 accessed directly using text markup such as @code{g^\markup @{
576 \musicglyph #"scripts.segno" @}}, see @ref{Formatting text}.
577
578
579 @menu
580 * Clef glyphs::
581 * Time Signature glyphs::
582 * Number glyphs::
583 * Accidental glyphs::
584 * Default Notehead glyphs::
585 * Special Notehead glyphs::
586 * Shape-note Notehead glyphs::
587 * Rest glyphs::
588 * Flag glyphs::
589 * Dot glyphs::
590 * Dynamic glyphs::
591 * Script glyphs::
592 * Arrowhead glyphs::
593 * Bracket-tip glyphs::
594 * Pedal glyphs::
595 * Accordion glyphs::
596 * Vaticana glyphs::
597 * Medicaea glyphs::
598 * Hufnagel glyphs::
599 * Mensural glyphs::
600 * Neomensural glyphs::
601 * Petrucci glyphs::
602 * Solesmes glyphs::
603 @end menu
604
605
606 @node Clef glyphs
607 @unnumberedsubsec Clef glyphs
608
609 @lilypond[quote]
610 \include "font-table.ly"
611 \markuplines \override-lines #'(word-space . 4)
612              \doc-chars #clefs
613 @end lilypond
614
615
616 @node Time Signature glyphs
617 @unnumberedsubsec Time Signature glyphs
618
619 @lilypond[quote]
620 \include "font-table.ly"
621 \markuplines \override-lines #'(word-space . 4)
622              \doc-chars #timesig
623 @end lilypond
624
625
626 @node Number glyphs
627 @unnumberedsubsec Number glyphs
628
629 @lilypond[quote]
630 \include "font-table.ly"
631 \markuplines \override-lines #'(word-space . 4)
632              \doc-chars #numbers
633 @end lilypond
634
635
636 @node Accidental glyphs
637 @unnumberedsubsec Accidental glyphs
638
639 @lilypond[quote]
640 \include "font-table.ly"
641 \markuplines \override-lines #'(word-space . 4)
642              \doc-chars #accidentals
643 @end lilypond
644
645
646 @node Default Notehead glyphs
647 @unnumberedsubsec Default Notehead glyphs
648
649 @lilypond[quote]
650 \include "font-table.ly"
651 \markuplines \override-lines #'(word-space . 4)
652              \doc-chars #default-noteheads
653 @end lilypond
654
655
656 @node Special Notehead glyphs
657 @unnumberedsubsec Special Notehead glyphs
658
659 @lilypond[quote]
660 \include "font-table.ly"
661 \markuplines \override-lines #'(word-space . 4)
662              \doc-chars #special-noteheads
663 @end lilypond
664
665
666 @node Shape-note Notehead glyphs
667 @unnumberedsubsec Shape-note Notehead glyphs
668
669 @lilypond[quote]
670 \include "font-table.ly"
671 \markuplines \override-lines #'(word-space . 4)
672              \doc-chars #shape-note-noteheads
673 @end lilypond
674
675
676 @node Rest glyphs
677 @unnumberedsubsec Rest glyphs
678
679 @lilypond[quote]
680 \include "font-table.ly"
681 \markuplines \override-lines #'(word-space . 4)
682              \doc-chars #rests
683 @end lilypond
684
685
686 @node Flag glyphs
687 @unnumberedsubsec Flag glyphs
688
689 @lilypond[quote]
690 \include "font-table.ly"
691 \markuplines \override-lines #'(word-space . 4)
692              \doc-chars #flags
693 @end lilypond
694
695
696 @node Dot glyphs
697 @unnumberedsubsec Dot glyphs
698
699 @lilypond[quote]
700 \include "font-table.ly"
701 \markuplines \override-lines #'(word-space . 4)
702              \doc-chars #dots
703 @end lilypond
704
705
706 @node Dynamic glyphs
707 @unnumberedsubsec Dynamic glyphs
708
709 @lilypond[quote]
710 \include "font-table.ly"
711 \markuplines \override-lines #'(word-space . 4)
712              \doc-chars #dynamics
713 @end lilypond
714
715
716 @node Script glyphs
717 @unnumberedsubsec Script glyphs
718
719 @lilypond[quote]
720 \include "font-table.ly"
721 \markuplines \override-lines #'(word-space . 4)
722              \doc-chars #scripts
723 @end lilypond
724
725
726 @node Arrowhead glyphs
727 @unnumberedsubsec Arrowhead glyphs
728
729 @lilypond[quote]
730 \include "font-table.ly"
731 \markuplines \override-lines #'(word-space . 4)
732              \doc-chars #arrowheads
733 @end lilypond
734
735
736 @node Bracket-tip glyphs
737 @unnumberedsubsec Bracket-tip glyphs
738
739 @lilypond[quote]
740 \include "font-table.ly"
741 \markuplines \override-lines #'(word-space . 4)
742              \doc-chars #brackettips
743 @end lilypond
744
745
746 @node Pedal glyphs
747 @unnumberedsubsec Pedal glyphs
748
749 @lilypond[quote]
750 \include "font-table.ly"
751 \markuplines \override-lines #'(word-space . 4)
752              \doc-chars #pedal
753 @end lilypond
754
755
756 @node Accordion glyphs
757 @unnumberedsubsec Accordion glyphs
758
759 @lilypond[quote]
760 \include "font-table.ly"
761 \markuplines \override-lines #'(word-space . 4)
762              \doc-chars #accordion
763 @end lilypond
764
765
766 @node Vaticana glyphs
767 @unnumberedsubsec Vaticana glyphs
768
769 @lilypond[quote]
770 \include "font-table.ly"
771 \markuplines \override-lines #'(word-space . 4)
772              \doc-chars #vaticana
773 @end lilypond
774
775
776 @node Medicaea glyphs
777 @unnumberedsubsec Medicaea glyphs
778
779 @lilypond[quote]
780 \include "font-table.ly"
781 \markuplines \override-lines #'(word-space . 4)
782              \doc-chars #medicaea
783 @end lilypond
784
785
786 @node Hufnagel glyphs
787 @unnumberedsubsec Hufnagel glyphs
788
789 @lilypond[quote]
790 \include "font-table.ly"
791 \markuplines \override-lines #'(word-space . 4)
792              \doc-chars #hufnagel
793 @end lilypond
794
795
796 @node Mensural glyphs
797 @unnumberedsubsec Mensural glyphs
798
799 @lilypond[quote]
800 \include "font-table.ly"
801 \markuplines \override-lines #'(word-space . 4)
802              \doc-chars #mensural
803 @end lilypond
804
805
806 @node Neomensural glyphs
807 @unnumberedsubsec Neomensural glyphs
808
809 @lilypond[quote]
810 \include "font-table.ly"
811 \markuplines \override-lines #'(word-space . 4)
812              \doc-chars #neomensural
813 @end lilypond
814
815
816 @node Petrucci glyphs
817 @unnumberedsubsec Petrucci glyphs
818
819 @lilypond[quote]
820 \include "font-table.ly"
821 \markuplines \override-lines #'(word-space . 4)
822              \doc-chars #petrucci
823 @end lilypond
824
825
826 @node Solesmes glyphs
827 @unnumberedsubsec Solesmes glyphs
828
829 @lilypond[quote]
830 \include "font-table.ly"
831 \markuplines \override-lines #'(word-space . 4)
832              \doc-chars #solesmes
833 @end lilypond
834
835
836 @node Note head styles
837 @appendixsec Note head styles
838
839 @cindex note head styles
840 The following styles may be used for note heads.
841
842 @lilypondfile[noindent]{note-head-style.ly}
843
844 @include markup-commands.tely
845
846 @include markup-list-commands.tely
847
848 @node List of articulations
849 @appendixsec List of articulations
850
851 @cindex accent
852 @cindex marcato
853 @cindex staccatissimo
854 @cindex espressivo
855 @cindex fermata
856 @cindex stopped
857 @cindex staccato
858 @cindex portato
859 @cindex tenuto
860 @cindex upbow
861 @cindex downbow
862 @cindex foot marks
863 @cindex organ pedal marks
864 @cindex turn
865 @cindex open
866 @cindex stopped
867 @cindex flageolet
868 @cindex reverseturn
869 @cindex trill
870 @cindex prall
871 @cindex mordent
872 @cindex prallprall
873 @cindex prallmordent
874 @cindex prall, up
875 @cindex prall, down
876 @cindex thumb marking
877 @cindex segno
878 @cindex coda
879 @cindex varcoda
880
881
882 @lilypondfile[quote,texidoc]{script-chart.ly}
883
884
885 @node Percussion notes
886 @appendixsec Percussion notes
887
888 @lilypondfile[quote]{percussion-chart.ly}
889
890
891 @node All context properties
892 @appendixsec All context properties
893
894 @include context-properties.tely
895
896
897 @node Layout properties
898 @appendixsec Layout properties
899
900 @include layout-properties.tely
901
902
903 @node Identifiers
904 @appendixsec Identifiers
905
906 @include identifiers.tely
907
908
909 @node Scheme functions
910 @appendixsec Scheme functions
911
912 @include scheme-functions.tely
913