]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/notation-appendices.itely
22e302e7d93dc45e74d0315e98681f4409eb2842
[lilypond.git] / Documentation / de / user / notation-appendices.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: 6bf3e9149eb97e66b4c813e41dc7625f06c501aa
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 @node Chord name chart
52 @appendixsec Chord name chart
53
54 Die Tabelle zeigt die zwei üblichen Möglichkeiten, wie Akkordbezeichnungen
55 ausgegeben werden. Es wird auch die entsprechende Note ausgegeben.
56
57 @lilypondfile{chord-names-jazz.ly}
58
59
60 @node Common chord modifiers
61 @appendixsec Common chord modifiers
62
63 Die Tabelle zeigt Modifikatoren für Akkorde, die im @code{\chordmode}-Modus
64 benutzt werden können, um übliche Akkordkonstrukte zu notieren.
65
66 @multitable @columnfractions .2 .3 .2 .2
67
68 @item
69 @b{Akkordtyp}
70 @tab
71 @b{Intervalle}
72 @tab
73 @b{Modifikator(en)}
74 @tab
75 @b{Beispiel}
76
77
78 @item
79 Dur
80 @tab
81 große Terz, Quinte
82 @tab
83 @code{5} oder nichts
84 @tab
85 @lilypond[line-width=3\cm,noragged-right, notime]
86 \chordmode {
87   c1:5
88 }
89 @end lilypond
90
91 @item
92 Moll
93 @tab
94 kleine Terz, Quinte
95 @tab
96 @code{m} oder @code{m5}
97 @tab
98 @lilypond[line-width=3\cm,noragged-right, notime]
99 \chordmode {
100   c1:m
101 }
102 @end lilypond
103
104 @item
105 Übermäßig
106 @tab
107 Große Terz, übermäßige Quinte
108 @tab
109 @code{aug}
110 @tab
111 @lilypond[line-width=3\cm,noragged-right, notime]
112 \chordmode {
113   c1:aug
114 }
115 @end lilypond
116
117 @item
118 Vermindert
119 @tab
120 Kleine Terz, verminderte Quinte
121 @tab
122 @code{dim}
123 @tab
124 @lilypond[line-width=3\cm,noragged-right, notime]
125 \chordmode {
126   c1:dim
127 }
128 @end lilypond
129
130 @item
131 Dominantsieben
132 @tab
133 Durdreiklang, kleine Septime
134 @tab
135 @code{7}
136 @tab
137 @lilypond[line-width=3\cm,noragged-right, notime]
138 \chordmode {
139   c1:7
140 }
141 @end lilypond
142
143 @item
144 Große Septime
145 @tab
146 Durdreiklang, große Septime
147 @tab
148 @code{maj7} oder @code{maj}
149 @tab
150 @lilypond[line-width=3\cm,noragged-right, notime]
151 \chordmode {
152   c1:maj7
153 }
154 @end lilypond
155
156 @item
157 Kleine Septime
158 @tab
159 Molldreiklang, kleine Septime
160 @tab
161 @code{m7}
162 @tab
163 @lilypond[line-width=3\cm,noragged-right, notime]
164 \chordmode {
165   c1:m7
166 }
167 @end lilypond
168
169 @item
170 Verminderte Septime
171 @tab
172 Verminderter Dreiklang, verminderte Septime
173 @tab
174 @code{dim7}
175 @tab
176 @lilypond[line-width=3\cm,noragged-right, notime]
177 \chordmode {
178   c1:dim7
179 }
180 @end lilypond
181
182 @item
183 Übermäßige Septime
184 @tab
185 Übermäßiger Dreiklang, kleine Septime
186 @tab
187 @code{aug7}
188 @tab
189 @lilypond[line-width=3\cm,noragged-right, notime]
190 \chordmode {
191   c1:aug7
192 }
193 @end lilypond
194
195 @item
196 halbverminderte Septime
197 @tab
198 Verminderter Dreklang, kleine Sept
199 @tab
200 @code{m7.5-}
201 @tab
202 @lilypond[line-width=3\cm,noragged-right, notime]
203 \chordmode {
204   c1:m7.5-
205 }
206 @end lilypond
207
208 @item
209 Kleine MollSept
210 @tab
211 Molldreiklang, Durseptime
212 @tab
213 @code{maj7.5-}
214 @tab
215 @lilypond[line-width=3\cm,noragged-right, notime]
216 \chordmode {
217   c1:maj7.5-
218 }
219 @end lilypond
220
221 @item
222 Große Sexte
223 @tab
224 Durdreiklang, Sexte
225 @tab
226 @code{6}
227 @tab
228 @lilypond[line-width=3\cm,noragged-right, notime]
229 \chordmode {
230   c1:6
231 }
232 @end lilypond
233
234 @item
235 Kleine Sexte
236 @tab
237 Molldreiklang, Sexte
238 @tab
239 @code{m6}
240 @tab
241 @lilypond[line-width=3\cm,noragged-right, notime]
242 \chordmode {
243   c1:m6
244 }
245 @end lilypond
246
247 @item
248 Dominantnone
249 @tab
250 Dominantsept, große None
251 @tab
252 @code{9}
253 @tab
254 @lilypond[line-width=3\cm,noragged-right, notime]
255 \chordmode {
256   c1:9
257 }
258 @end lilypond
259
260 @item
261 Dur None
262 @tab
263 Große None, große Septime
264 @tab
265 @code{maj9}
266 @tab
267 @lilypond[line-width=3\cm,noragged-right, notime]
268 \chordmode {
269   c1:maj9
270 }
271 @end lilypond
272
273 @item
274 Moll None
275 @tab
276 Große None, kleine Septime
277 @tab
278 @code{m9}
279 @tab
280 @lilypond[line-width=3\cm,noragged-right, notime]
281 \chordmode {
282   c1:m9
283 }
284 @end lilypond
285
286 @item
287 Dominantundezime
288 @tab
289 Dominantnone, perfekte Undezime
290 @tab
291 @code{11}
292 @tab
293 @lilypond[line-width=3\cm,noragged-right, notime]
294 \chordmode {
295   c1:11
296 }
297 @end lilypond
298
299 @item
300 Durundezime
301 @tab
302 Große None, perfekte Unidezime
303 @tab
304 @code{maj11}
305 @tab
306 @lilypond[line-width=3\cm,noragged-right, notime]
307 \chordmode {
308   c1:maj11
309 }
310 @end lilypond
311
312 @item
313 Mollundezime
314 @tab
315 Kleine None, perfekte Undezime
316 @tab
317 @code{m11}
318 @tab
319 @lilypond[line-width=3\cm,noragged-right, notime]
320 \chordmode {
321   c1:m11
322 }
323 @end lilypond
324
325 @item
326 Dominant-13
327 @tab
328 Dominantnone, große 13
329 @tab
330 @code{13}
331 @tab
332 @lilypond[line-width=3\cm,noragged-right, notime]
333 \chordmode {
334   c1:13
335 }
336 @end lilypond
337
338 @item
339 Dominant-13
340 @tab
341 @code{13.11}
342 @tab
343 @lilypond[line-width=3\cm,noragged-right, notime]
344 \chordmode {
345   c1:13.11
346 }
347 @end lilypond
348
349 @item
350 Dur-13
351 @tab
352 Große Undezime, große 13
353 @tab
354 @code{maj13.11}
355 @tab
356 @lilypond[line-width=3\cm,noragged-right, notime]
357 \chordmode {
358   c1:maj13.11
359 }
360 @end lilypond
361
362 @item
363 Moll-13
364 @tab
365 Kleine Undezime, große 13
366 @tab
367 @code{m13.11}
368 @tab
369 @lilypond[line-width=3\cm,noragged-right, notime]
370 \chordmode {
371   c1:m13.11
372 }
373 @end lilypond
374
375 @item
376 Sekundakkord
377 @tab
378 große Sekunde, perfekte Quinte
379 @tab
380 @code{sus2}
381 @tab
382 @lilypond[line-width=3\cm,noragged-right, notime]
383 \chordmode {
384   c1:sus2
385 }
386 @end lilypond
387
388 @item
389 Quartakkord
390 @tab
391 perfekte Quarte, perfekte Quinte
392 @tab
393 @code{sus4}
394 @tab
395 @lilypond[line-width=3\cm,noragged-right, notime]
396 \chordmode {
397   c1:sus4
398 }
399 @end lilypond
400
401
402 @end multitable
403
404
405 @node Predefined fretboard diagrams
406 @appendixsec Predefined fretboard diagrams
407
408 Die Tabelle zeigt alle vordefinierten Bunddiagramme.
409
410 @lilypondfile{display-predefined-fretboards.ly}
411
412
413
414 @node MIDI instruments
415 @appendixsec MIDI instruments
416
417 Hier eine Liste von Musikinstrumentenbezeichnungen, die als Name für 
418 @code{midiInstrument} benutzt werden können.
419 @c Todo: translate music instrument's names to German
420
421 @cindex MIDI-Instrumentenbezeichnungen
422
423 @example
424 acoustic grand            contrabass           lead 7 (fifths)
425 bright acoustic           tremolo strings      lead 8 (bass+lead)
426 electric grand            pizzicato strings    pad 1 (new age)
427 honky-tonk                orchestral harp      pad 2 (warm)
428 electric piano 1          timpani              pad 3 (polysynth)
429 electric piano 2          string ensemble 1    pad 4 (choir)
430 harpsichord               string ensemble 2    pad 5 (bowed)
431 clav                      synthstrings 1       pad 6 (metallic)
432 celesta                   synthstrings 2       pad 7 (halo)
433 glockenspiel              choir aahs           pad 8 (sweep)
434 music box                 voice oohs           fx 1 (rain)
435 vibraphone                synth voice          fx 2 (soundtrack)
436 marimba                   orchestra hit        fx 3 (crystal)
437 xylophone                 trumpet              fx 4 (atmosphere)
438 tubular bells             trombone             fx 5 (brightness)
439 dulcimer                  tuba                 fx 6 (goblins)
440 drawbar organ             muted trumpet        fx 7 (echoes)
441 percussive organ          french horn          fx 8 (sci-fi)
442 rock organ                brass section        sitar
443 church organ              synthbrass 1         banjo
444 reed organ                synthbrass 2         shamisen
445 accordion                 soprano sax          koto
446 harmonica                 alto sax             kalimba
447 concertina                tenor sax            bagpipe
448 acoustic guitar (nylon)   baritone sax         fiddle
449 acoustic guitar (steel)   oboe                 shanai
450 electric guitar (jazz)    english horn         tinkle bell
451 electric guitar (clean)   bassoon              agogo
452 electric guitar (muted)   clarinet             steel drums
453 overdriven guitar         piccolo              woodblock
454 distorted guitar          flute                taiko drum
455 guitar harmonics          recorder             melodic tom
456 acoustic bass             pan flute            synth drum
457 electric bass (finger)    blown bottle         reverse cymbal
458 electric bass (pick)      shakuhachi           guitar fret noise
459 fretless bass             whistle              breath noise
460 slap bass 1               ocarina              seashore
461 slap bass 2               lead 1 (square)      bird tweet
462 synth bass 1              lead 2 (sawtooth)    telephone ring
463 synth bass 2              lead 3 (calliope)    helicopter
464 violin                    lead 4 (chiff)       applause
465 viola                     lead 5 (charang)     gunshot
466 cello                     lead 6 (voice)
467 @end example
468
469
470 @node List of colors
471 @appendixsec List of colors
472
473 @subsubheading Normal colors
474
475 Die Syntax zur Benutzung findet sich im Abschnitt @ref{Coloring objects}.
476
477 @cindex Liste der Farben
478 @cindex Farben, Liste
479
480 @verbatim
481 black       white          red         green
482 blue        cyan           magenta     yellow
483 grey        darkred        darkgreen   darkblue
484 darkcyan    darkmagenta    darkyellow
485 @end verbatim
486
487
488 @subsubheading X color names
489
490 X-Farbbezeichnungen haben verschiedene Varianten:
491
492 Alle Bezeichnungen, die als einziges Wort mit Großbuchstaben 
493 geschrieben werden (bspw. @q{LightSlateBlue}), können auch 
494 von Leerzeichen getrennt geschrieben werden
495 (also @q{light slate blue}).
496
497 Das Wort @q{grey} kann in jedem Fall auch @q{gray} geschrieben 
498 werden (bspw. @q{DarkSlateGray}).
499
500 Manche Bezeichnungen können auch ein numerales Suffix tragen 
501 (etwa @q{LightSalmon4}).
502
503
504 @subsubheading Color Names without a numerical suffix:
505
506 @verbatim
507 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
508 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
509 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
510 ivory           LemonChiffon    seashell        honeydew        MintCream
511 azure           AliceBlue       lavender        LavenderBlush   MistyRose
512 white           black           DarkSlateGrey   DimGrey         SlateGrey
513 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
514 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
515 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
516 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
517 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
518 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
519 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
520 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
521 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
522 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
523 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
524 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
525 SaddleBrown     sienna          peru            burlywood       beige
526 wheat           SandyBrown      tan             chocolate       firebrick
527 brown           DarkSalmon      salmon          LightSalmon     orange
528 DarkOrange      coral           LightCoral      tomato          OrangeRed
529 red             HotPink         DeepPink        pink            LightPink
530 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
531 violet          plum            orchid          MediumOrchid    DarkOrchid
532 DarkViolet      BlueViolet      purple          MediumPurple    thistle
533 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
534 LightGreen
535 @end verbatim
536
537
538 @subsubheading Color names with a numerical suffix
539
540 Für die folgenden Bezeichnungen kann das Suffix N durch eine 
541 Zahl von 1--4 ersetzt werden.
542
543 @verbatim
544 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
545 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
546 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
547 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
548 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
549 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
550 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
551 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
552 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
553 IndianRedN      siennaN         burlywoodN      wheatN          tanN
554 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
555 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
556 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
557 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
558 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
559 thistleN
560 @end verbatim
561
562
563 @subsubheading Grey Scale
564
565 Eine Grauskala kann mit der Bezeichnung
566
567 @example
568 greyN
569 @end example
570
571 @noindent
572 erstellt werden, wobei N eine Zahl von 0--100 darstellt.
573
574
575 @node The Feta font
576 @appendixsec The Feta font
577
578 @cindex Feta font
579 @cindex Font, Feta
580
581 Die folgenden Symbole sind als Emmentaler-Schriftart verfügbar; auf sie 
582 kann direkt zugegriffen werden, indem man die übliche Textbeschriftung 
583 benutzt. @code{\musicglyph} greift direkt auf die Notationsschriftart 
584 zu (bspw. @code{g^\markup @{
585 \musicglyph #"scripts.segno" @}}). Siehe auch @ref{Formatting text}.
586
587 @lilypondfile[noindent]{font-table.ly}
588
589
590 @node Note head styles
591 @appendixsec Note head styles
592
593 @cindex Notenkopfarten
594 @cindex Arten von Notenköpfen
595 @cindex Stile, Notenköpfe
596
597 Folgende Stile können zur Darstellung der Notenköpfe verwendet werden:
598
599 @lilypondfile[noindent]{note-head-style.ly}
600
601 @include markup-commands.tely
602
603 @include markup-list-commands.tely
604
605 @node List of articulations
606 @appendixsec List of articulations
607
608 @cindex Akzent
609 @cindex Marcato
610 @cindex Staccatissimo
611 @cindex Espressivo
612 @cindex Fermate
613 @cindex Gedämpft
614 @cindex Staccato
615 @cindex Portato
616 @cindex Tenuto
617 @cindex Aufstrich
618 @cindex Abstrich
619 @cindex Fußbezeichnung
620 @cindex Orgelpedalbezeichnung
621 @cindex Triller
622 @cindex Offen
623 @cindex Flageolet
624 @cindex Praller
625 @cindex Mordent
626 @cindex Doppelpraller
627 @cindex Prallermordent
628 @cindex Fingersatz
629 @cindex Daumenbezeichnung
630 @cindex Segno
631 @cindex Coda
632 @cindex Varcoda
633
634 @lilypondfile[quote,texidoc]{script-chart.ly}
635
636
637 @node Percussion notes
638 @appendixsec Percussion notes
639
640 @lilypondfile[quote]{percussion-chart.ly}
641
642
643 @node All context properties
644 @appendixsec All context properties
645
646 @include context-properties.tely
647
648
649 @node Layout properties
650 @appendixsec Layout properties
651
652 @include layout-properties.tely
653
654
655 @node Identifiers
656 @appendixsec Identifiers
657
658 @include identifiers.tely
659
660
661 @node Scheme functions
662 @appendixsec Scheme functions
663
664 @include scheme-functions.tely
665