]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/notation-appendices.itely
Modification of chords, rhythms, notation-appendices .itely
[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.51"
11
12 @node Notation manual tables
13 @appendix Notation manual tables
14
15 @menu
16 * Chord name chart::            
17 * Common chord modifiers::
18 * MIDI instruments::            
19 * List of colors::              
20 * The Feta font::               
21 * Note head styles::            
22 * Text markup commands::        
23 * Text markup list commands::   
24 * List of articulations::       
25 * All context properties::      
26 * Layout properties::           
27 * Identifiers::                 
28 * Scheme functions::            
29 @end menu
30
31
32
33 @node Chord name chart
34 @appendixsec Chord name chart
35
36 The following charts shows two standard systems for printing chord
37 names, along with the pitches they represent.
38
39 @lilypondfile{chord-names-jazz.ly}
40
41 @node Common chord modifiers
42 @appendixsec Common chord modifiers
43
44 The following table shows chord modifiers that can be used in
45 @code{\chordmode} to generate standard chord structures.
46
47 @multitable @columnfractions .2 .3 .2 .2
48
49 @item
50 @b{Chord type}
51 @tab
52 @b{Intervals}
53 @tab
54 @b{Modifier(s)}
55 @tab
56 @b{Example}
57
58
59 @item
60 Major
61 @tab
62 Major third, perfect fifth
63 @tab
64 @code{5} or nothing
65 @tab
66 @lilypond[line-width=1.5\cm]
67 \chordmode {
68   c1:5
69 }
70 @end lilypond
71
72 @item
73 Minor
74 @tab
75 Minor third, perfect fifth
76 @tab
77 @code{m} or @code{m5}
78 @tab
79 @lilypond[line-width=1.5\cm]
80 \chordmode {
81   c1:m
82 }
83 @end lilypond
84
85 @item
86 Augmented
87 @tab
88 Major third, augmented fifth
89 @tab
90 @code{aug}
91 @tab
92 @lilypond[line-width=1.5\cm]
93 \chordmode {
94   c1:aug
95 }
96 @end lilypond
97
98 @item
99 Diminished
100 @tab
101 Minor third, diminished fifth
102 @tab
103 @code{dim}
104 @tab
105 @lilypond[line-width=1.5\cm]
106 \chordmode {
107   c1:dim
108 }
109 @end lilypond
110
111 @item
112 Dominant seventh
113 @tab
114 Major triad, minor seventh
115 @tab
116 @code{7}
117 @tab
118 @lilypond[line-width=1.5\cm]
119 \chordmode {
120   c1:7
121 }
122 @end lilypond
123
124 @item
125 Major seventh
126 @tab
127 Major triad, major seventh
128 @tab
129 @code{maj7} or @code{maj}
130 @tab
131 @lilypond[line-width=1.5\cm]
132 \chordmode {
133   c1:maj7
134 }
135 @end lilypond
136
137 @item
138 Minor seventh
139 @tab
140 Minor triad, minor seventh
141 @tab
142 @code{m7}
143 @tab
144 @lilypond[line-width=1.5\cm]
145 \chordmode {
146   c1:m7
147 }
148 @end lilypond
149
150 @item
151 Diminished seventh
152 @tab
153 Diminished triad, diminished seventh
154 @tab
155 @code{dim7}
156 @tab
157 @lilypond[line-width=1.5\cm]
158 \chordmode {
159   c1:dim7
160 }
161 @end lilypond
162
163 @item
164 Augmented seventh
165 @tab
166 Augmented triad, minor seventh
167 @tab
168 @code{aug7}
169 @tab
170 @lilypond[line-width=1.5\cm]
171 \chordmode {
172   c1:aug7
173 }
174 @end lilypond
175
176 @item
177 Half-diminished seventh
178 @tab
179 Diminished triad, minor seventh
180 @tab
181 @code{dim5m7}
182 @tab
183 @lilypond[line-width=1.5\cm]
184 \chordmode {
185   c1:dim5m7
186 }
187 @end lilypond
188
189 @item
190 Minor-major seventh
191 @tab
192 Minor triad, major seventh
193 @tab
194 @code{7m5}
195 @tab
196 @lilypond[line-width=1.5\cm]
197 \chordmode {
198   c1:7m5
199 }
200 @end lilypond
201
202 @item
203 Major sixth
204 @tab
205 Major triad, sixth
206 @tab
207 @code{6}
208 @tab
209 @lilypond[line-width=1.5\cm]
210 \chordmode {
211   c1:6
212 }
213 @end lilypond
214
215 @item
216 Minor sixth
217 @tab
218 Minor triad, sixth
219 @tab
220 @code{m6}
221 @tab
222 @lilypond[line-width=1.5\cm]
223 \chordmode {
224   c1:m6
225 }
226 @end lilypond
227
228 @item
229 Dominant ninth
230 @tab
231 Dominant seventh, major ninth
232 @tab
233 @code{9}
234 @tab
235 @lilypond[line-width=1.5\cm]
236 \chordmode {
237   c1:9
238 }
239 @end lilypond
240
241 @item
242 Major ninth
243 @tab
244 TODO
245 @tab
246 @code{maj9}
247 @tab
248 @lilypond[line-width=1.5\cm]
249 \chordmode {
250   c1:maj9
251 }
252 @end lilypond
253
254 @item
255 Minor ninth
256 @tab
257 TODO
258 @tab
259 @code{m9}
260 @tab
261 @lilypond[line-width=1.5\cm]
262 \chordmode {
263   c1:m9
264 }
265 @end lilypond
266
267 @item
268 Dominant eleventh
269 @tab
270 Dominant ninth, perfect eleventh
271 @tab
272 @code{11}
273 @tab
274 @lilypond[line-width=1.5\cm]
275 \chordmode {
276   c1:11
277 }
278 @end lilypond
279
280 @item
281 Major eleventh
282 @tab
283 TODO
284 @tab
285 @code{maj11}
286 @tab
287 @lilypond[line-width=1.5\cm]
288 \chordmode {
289   c1:maj11
290 }
291 @end lilypond
292
293 @item
294 Minor eleventh
295 @tab
296 TODO
297 @tab
298 @code{m11}
299 @tab
300 @lilypond[line-width=1.5\cm]
301 \chordmode {
302   c1:m11
303 }
304 @end lilypond
305
306 @item
307 Dominant thirteenth
308 @tab
309 Dominant eleventh, major thirteenth
310 @tab
311 @code{13.11}
312 @tab
313 @lilypond[line-width=1.5\cm]
314 \chordmode {
315   c1:13.11
316 }
317 @end lilypond
318
319 @item
320 Major thirteenth
321 @tab
322 TODO
323 @tab
324 @code{maj13.11}
325 @tab
326 @lilypond[line-width=1.5\cm]
327 \chordmode {
328   c1:maj13.11
329 }
330 @end lilypond
331
332 @item
333 Minor thirteenth
334 @tab
335 TODO
336 @tab
337 @code{m13.11}
338 @tab
339 @lilypond[line-width=1.5\cm]
340 \chordmode {
341   c1:m13.11
342 }
343 @end lilypond
344
345 @item
346 Suspended second
347 @tab
348 TODO
349 @tab
350 @code{sus2}
351 @tab
352 @lilypond[line-width=1.5\cm]
353 \chordmode {
354   c1:sus2
355 }
356 @end lilypond
357
358 @item
359 Suspended fourth
360 @tab
361 TODO
362 @tab
363 @code{sus4}
364 @tab
365 @lilypond[line-width=1.5\cm]
366 \chordmode {
367   c1:sus4
368 }
369 @end lilypond
370
371
372 @end multitable
373
374 @node MIDI instruments
375 @appendixsec MIDI instruments
376
377 The following is a list of names that can be used for the
378 @code{midiInstrument} property.
379
380 @example
381 acoustic grand            contrabass           lead 7 (fifths)
382 bright acoustic           tremolo strings      lead 8 (bass+lead)
383 electric grand            pizzicato strings    pad 1 (new age)
384 honky-tonk                orchestral strings   pad 2 (warm)
385 electric piano 1          timpani              pad 3 (polysynth)
386 electric piano 2          string ensemble 1    pad 4 (choir)
387 harpsichord               string ensemble 2    pad 5 (bowed)
388 clav                      synthstrings 1       pad 6 (metallic)
389 celesta                   synthstrings 2       pad 7 (halo)
390 glockenspiel              choir aahs           pad 8 (sweep)
391 music box                 voice oohs           fx 1 (rain)
392 vibraphone                synth voice          fx 2 (soundtrack)
393 marimba                   orchestra hit        fx 3 (crystal)
394 xylophone                 trumpet              fx 4 (atmosphere)
395 tubular bells             trombone             fx 5 (brightness)
396 dulcimer                  tuba                 fx 6 (goblins)
397 drawbar organ             muted trumpet        fx 7 (echoes)
398 percussive organ          french horn          fx 8 (sci-fi)
399 rock organ                brass section        sitar
400 church organ              synthbrass 1         banjo
401 reed organ                synthbrass 2         shamisen
402 accordion                 soprano sax          koto
403 harmonica                 alto sax             kalimba
404 concertina                tenor sax            bagpipe
405 acoustic guitar (nylon)   baritone sax         fiddle
406 acoustic guitar (steel)   oboe                 shanai
407 electric guitar (jazz)    english horn         tinkle bell
408 electric guitar (clean)   bassoon              agogo
409 electric guitar (muted)   clarinet             steel drums
410 overdriven guitar         piccolo              woodblock
411 distorted guitar          flute                taiko drum
412 guitar harmonics          recorder             melodic tom
413 acoustic bass             pan flute            synth drum
414 electric bass (finger)    blown bottle         reverse cymbal
415 electric bass (pick)      shakuhachi           guitar fret noise
416 fretless bass             whistle              breath noise
417 slap bass 1               ocarina              seashore
418 slap bass 2               lead 1 (square)      bird tweet
419 synth bass 1              lead 2 (sawtooth)    telephone ring
420 synth bass 2              lead 3 (calliope)    helicopter
421 violin                    lead 4 (chiff)       applause
422 viola                     lead 5 (charang)     gunshot
423 cello                     lead 6 (voice)
424 @end example
425
426
427 @node List of colors
428 @appendixsec List of colors
429
430 @subsubheading Normal colors
431
432 Usage syntax is detailed in @ref{Coloring objects}.
433
434 @cindex List of colors
435 @cindex Colors, list of
436
437 @verbatim
438 black       white          red         green
439 blue        cyan           magenta     yellow
440 grey        darkred        darkgreen   darkblue
441 darkcyan    darkmagenta    darkyellow
442 @end verbatim
443
444
445 @subsubheading X color names
446
447 X color names come several variants:
448
449 Any name that is spelled as a single word with capitalization
450 (e.g. @q{LightSlateBlue}) can also be spelled as space separated
451 words without capitalization (e.g. @q{light slate blue}).
452
453 The word @q{grey} can always be spelled @q{gray} (e.g. @q{DarkSlateGray}).
454
455 Some names can take a numerical suffix (e.g. @q{LightSalmon4}).
456
457
458 @subsubheading Color Names without a numerical suffix:
459
460 @verbatim
461 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
462 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
463 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
464 ivory           LemonChiffon    seashell        honeydew        MintCream
465 azure           AliceBlue       lavender        LavenderBlush   MistyRose
466 white           black           DarkSlateGrey   DimGrey         SlateGrey
467 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
468 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
469 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
470 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
471 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
472 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
473 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
474 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
475 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
476 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
477 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
478 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
479 SaddleBrown     sienna          peru            burlywood       beige
480 wheat           SandyBrown      tan             chocolate       firebrick
481 brown           DarkSalmon      salmon          LightSalmon     orange
482 DarkOrange      coral           LightCoral      tomato          OrangeRed
483 red             HotPink         DeepPink        pink            LightPink
484 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
485 violet          plum            orchid          MediumOrchid    DarkOrchid
486 DarkViolet      BlueViolet      purple          MediumPurple    thistle
487 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
488 LightGreen
489 @end verbatim
490
491
492 @subsubheading Color names with a numerical suffix
493
494 In the following names the suffix N can be a number in the range 1-4:
495
496 @verbatim
497 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
498 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
499 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
500 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
501 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
502 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
503 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
504 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
505 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
506 IndianRedN      siennaN         burlywoodN      wheatN          tanN
507 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
508 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
509 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
510 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
511 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
512 thistleN
513 @end verbatim
514
515
516 @subsubheading Grey Scale
517
518 A grey scale can be obtained using:
519
520 @example
521 greyN
522 @end example
523
524 @noindent
525 Where N is in the range 0-100.
526
527
528 @node The Feta font
529 @appendixsec The Feta font
530
531 @cindex Feta font
532 @cindex Font, Feta
533
534 The following symbols are available in the Emmentaler font and may be
535 accessed directly using text markup such as @code{g^\markup @{
536 \musicglyph #"scripts.segno" @}}, see @ref{Formatting text}.
537
538 @lilypondfile[noindent]{font-table.ly}
539
540
541 @node Note head styles
542 @appendixsec Note head styles
543
544 @cindex note head styles
545 The following styles may be used for note heads.
546
547 @lilypondfile[noindent]{note-head-style.ly}
548
549 @include markup-commands.tely
550
551 @include markup-list-commands.tely
552
553 @node List of articulations
554 @appendixsec List of articulations
555
556 @cindex accent
557 @cindex marcato
558 @cindex staccatissimo
559 @cindex espressivo
560 @cindex fermata
561 @cindex stopped
562 @cindex staccato
563 @cindex portato
564 @cindex tenuto
565 @cindex upbow
566 @cindex downbow
567 @cindex foot marks
568 @cindex organ pedal marks
569 @cindex turn
570 @cindex open
571 @cindex stopped
572 @cindex flageolet
573 @cindex reverseturn
574 @cindex trill
575 @cindex prall
576 @cindex mordent
577 @cindex prallprall
578 @cindex prallmordent
579 @cindex prall, up
580 @cindex prall, down
581 @cindex thumb marking
582 @cindex segno
583 @cindex coda
584 @cindex varcoda
585
586 Here is a chart showing all scripts available,
587
588 @lilypondfile[ragged-right,quote]{script-chart.ly}
589
590
591
592 @node All context properties
593 @appendixsec All context properties
594
595 @include context-properties.tely
596
597
598 @node Layout properties
599 @appendixsec Layout properties
600
601 @include layout-properties.tely
602
603
604 @node Identifiers
605 @appendixsec Identifiers
606
607 @include identifiers.tely
608
609
610 @node Scheme functions
611 @appendixsec Scheme functions
612
613 @include scheme-functions.tely
614