]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation-appendices.itely
Merge master into nested-bookparts
[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.11.61"
11
12 @node Notation manual tables
13 @appendix Notation manual tables
14
15 @c Please do not delete the following @ignore block.
16 @ignore
17 Note for editors and translators: In the following menu, two entries
18 are needed to link to a pair of automatically generated sections.
19 Please keep them and, if using emacs, do not run
20 texinfo-all-menus-update without manually restoring them back. These
21 menu entries are:
22
23 * Text markup commands::
24 * Text markup list commands::
25
26 and they should go just after
27 * Note head styles::
28
29 and just before
30 * List of articulations::
31 @end ignore
32
33 @menu
34 * Chord name chart::            
35 * Common chord modifiers::      
36 * Predefined fretboard diagrams::  
37 * MIDI instruments::            
38 * List of colors::              
39 * The Feta font::               
40 * Note head styles::            
41 * Text markup commands::        
42 * Text markup list commands::
43 * List of articulations::       
44 * Percussion notes::            
45 * All context properties::      
46 * Layout properties::           
47 * Identifiers::                 
48 * Scheme functions::            
49 @end menu
50
51
52
53 @node Chord name chart
54 @appendixsec Chord name chart
55
56 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{dim5m7}
202 @tab
203 @lilypond[line-width=3\cm,noragged-right, notime]
204 \chordmode {
205   c1:dim5m7
206 }
207 @end lilypond
208
209 @item
210 Minor-major seventh
211 @tab
212 Minor triad, major seventh
213 @tab
214 @code{7m5}
215 @tab
216 @lilypond[line-width=3\cm,noragged-right, notime]
217 \chordmode {
218   c1:7m5
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 TODO
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 TODO
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 TODO
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 TODO
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 eleventh, major thirteenth
330 @tab
331 @code{13.11}
332 @tab
333 @lilypond[line-width=3\cm,noragged-right, notime]
334 \chordmode {
335   c1:13.11
336 }
337 @end lilypond
338
339 @item
340 Major thirteenth
341 @tab
342 TODO
343 @tab
344 @code{maj13.11}
345 @tab
346 @lilypond[line-width=3\cm,noragged-right, notime]
347 \chordmode {
348   c1:maj13.11
349 }
350 @end lilypond
351
352 @item
353 Minor thirteenth
354 @tab
355 TODO
356 @tab
357 @code{m13.11}
358 @tab
359 @lilypond[line-width=3\cm,noragged-right, notime]
360 \chordmode {
361   c1:m13.11
362 }
363 @end lilypond
364
365 @item
366 Suspended second
367 @tab
368 TODO
369 @tab
370 @code{sus2}
371 @tab
372 @lilypond[line-width=3\cm,noragged-right, notime]
373 \chordmode {
374   c1:sus2
375 }
376 @end lilypond
377
378 @item
379 Suspended fourth
380 @tab
381 TODO
382 @tab
383 @code{sus4}
384 @tab
385 @lilypond[line-width=3\cm,noragged-right, notime]
386 \chordmode {
387   c1:sus4
388 }
389 @end lilypond
390
391
392 @end multitable
393
394 @node Predefined fretboard diagrams
395 @appendixsec Predefined fretboard diagrams
396
397 The chart below shows the predefined fretboard diagrams.
398
399 @lilypondfile{display-predefined-fretboards.ly}
400
401 @node MIDI instruments
402 @appendixsec MIDI instruments
403
404 The following is a list of names that can be used for the
405 @code{midiInstrument} property.
406
407 @example
408 acoustic grand            contrabass           lead 7 (fifths)
409 bright acoustic           tremolo strings      lead 8 (bass+lead)
410 electric grand            pizzicato strings    pad 1 (new age)
411 honky-tonk                orchestral strings   pad 2 (warm)
412 electric piano 1          timpani              pad 3 (polysynth)
413 electric piano 2          string ensemble 1    pad 4 (choir)
414 harpsichord               string ensemble 2    pad 5 (bowed)
415 clav                      synthstrings 1       pad 6 (metallic)
416 celesta                   synthstrings 2       pad 7 (halo)
417 glockenspiel              choir aahs           pad 8 (sweep)
418 music box                 voice oohs           fx 1 (rain)
419 vibraphone                synth voice          fx 2 (soundtrack)
420 marimba                   orchestra hit        fx 3 (crystal)
421 xylophone                 trumpet              fx 4 (atmosphere)
422 tubular bells             trombone             fx 5 (brightness)
423 dulcimer                  tuba                 fx 6 (goblins)
424 drawbar organ             muted trumpet        fx 7 (echoes)
425 percussive organ          french horn          fx 8 (sci-fi)
426 rock organ                brass section        sitar
427 church organ              synthbrass 1         banjo
428 reed organ                synthbrass 2         shamisen
429 accordion                 soprano sax          koto
430 harmonica                 alto sax             kalimba
431 concertina                tenor sax            bagpipe
432 acoustic guitar (nylon)   baritone sax         fiddle
433 acoustic guitar (steel)   oboe                 shanai
434 electric guitar (jazz)    english horn         tinkle bell
435 electric guitar (clean)   bassoon              agogo
436 electric guitar (muted)   clarinet             steel drums
437 overdriven guitar         piccolo              woodblock
438 distorted guitar          flute                taiko drum
439 guitar harmonics          recorder             melodic tom
440 acoustic bass             pan flute            synth drum
441 electric bass (finger)    blown bottle         reverse cymbal
442 electric bass (pick)      shakuhachi           guitar fret noise
443 fretless bass             whistle              breath noise
444 slap bass 1               ocarina              seashore
445 slap bass 2               lead 1 (square)      bird tweet
446 synth bass 1              lead 2 (sawtooth)    telephone ring
447 synth bass 2              lead 3 (calliope)    helicopter
448 violin                    lead 4 (chiff)       applause
449 viola                     lead 5 (charang)     gunshot
450 cello                     lead 6 (voice)
451 @end example
452
453
454 @node List of colors
455 @appendixsec List of colors
456
457 @subsubheading Normal colors
458
459 Usage syntax is detailed in @ref{Coloring objects}.
460
461 @cindex List of colors
462 @cindex Colors, list of
463
464 @verbatim
465 black       white          red         green
466 blue        cyan           magenta     yellow
467 grey        darkred        darkgreen   darkblue
468 darkcyan    darkmagenta    darkyellow
469 @end verbatim
470
471
472 @subsubheading X color names
473
474 X color names come several variants:
475
476 Any name that is spelled as a single word with capitalization
477 (e.g. @q{LightSlateBlue}) can also be spelled as space separated
478 words without capitalization (e.g. @q{light slate blue}).
479
480 The word @q{grey} can always be spelled @q{gray} (e.g. @q{DarkSlateGray}).
481
482 Some names can take a numerical suffix (e.g. @q{LightSalmon4}).
483
484
485 @subsubheading Color Names without a numerical suffix:
486
487 @verbatim
488 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
489 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
490 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
491 ivory           LemonChiffon    seashell        honeydew        MintCream
492 azure           AliceBlue       lavender        LavenderBlush   MistyRose
493 white           black           DarkSlateGrey   DimGrey         SlateGrey
494 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
495 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
496 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
497 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
498 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
499 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
500 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
501 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
502 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
503 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
504 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
505 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
506 SaddleBrown     sienna          peru            burlywood       beige
507 wheat           SandyBrown      tan             chocolate       firebrick
508 brown           DarkSalmon      salmon          LightSalmon     orange
509 DarkOrange      coral           LightCoral      tomato          OrangeRed
510 red             HotPink         DeepPink        pink            LightPink
511 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
512 violet          plum            orchid          MediumOrchid    DarkOrchid
513 DarkViolet      BlueViolet      purple          MediumPurple    thistle
514 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
515 LightGreen
516 @end verbatim
517
518
519 @subsubheading Color names with a numerical suffix
520
521 In the following names the suffix N can be a number in the range 1-4:
522
523 @verbatim
524 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
525 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
526 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
527 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
528 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
529 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
530 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
531 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
532 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
533 IndianRedN      siennaN         burlywoodN      wheatN          tanN
534 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
535 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
536 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
537 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
538 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
539 thistleN
540 @end verbatim
541
542
543 @subsubheading Grey Scale
544
545 A grey scale can be obtained using:
546
547 @example
548 greyN
549 @end example
550
551 @noindent
552 Where N is in the range 0-100.
553
554
555 @node The Feta font
556 @appendixsec The Feta font
557
558 @cindex Feta font
559 @cindex Font, Feta
560
561 The following symbols are available in the Emmentaler font and may be
562 accessed directly using text markup such as @code{g^\markup @{
563 \musicglyph #"scripts.segno" @}}, see @ref{Formatting text}.
564
565 @lilypondfile[noindent]{font-table.ly}
566
567
568 @node Note head styles
569 @appendixsec Note head styles
570
571 @cindex note head styles
572 The following styles may be used for note heads.
573
574 @lilypondfile[noindent]{note-head-style.ly}
575
576 @include markup-commands.tely
577
578 @include markup-list-commands.tely
579
580 @node List of articulations
581 @appendixsec List of articulations
582
583 @cindex accent
584 @cindex marcato
585 @cindex staccatissimo
586 @cindex espressivo
587 @cindex fermata
588 @cindex stopped
589 @cindex staccato
590 @cindex portato
591 @cindex tenuto
592 @cindex upbow
593 @cindex downbow
594 @cindex foot marks
595 @cindex organ pedal marks
596 @cindex turn
597 @cindex open
598 @cindex stopped
599 @cindex flageolet
600 @cindex reverseturn
601 @cindex trill
602 @cindex prall
603 @cindex mordent
604 @cindex prallprall
605 @cindex prallmordent
606 @cindex prall, up
607 @cindex prall, down
608 @cindex thumb marking
609 @cindex segno
610 @cindex coda
611 @cindex varcoda
612
613 Here is a chart showing all scripts available,
614
615 @lilypondfile[quote]{script-chart.ly}
616
617
618 @node Percussion notes
619 @appendixsec Percussion notes
620
621 @lilypondfile[quote]{percussion-chart.ly}
622
623
624 @node All context properties
625 @appendixsec All context properties
626
627 @include context-properties.tely
628
629
630 @node Layout properties
631 @appendixsec Layout properties
632
633 @include layout-properties.tely
634
635
636 @node Identifiers
637 @appendixsec Identifiers
638
639 @include identifiers.tely
640
641
642 @node Scheme functions
643 @appendixsec Scheme functions
644
645 @include scheme-functions.tely
646