]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/notation/notation-appendices.itely
Merge branch 'lilypond/translation'
[lilypond.git] / Documentation / de / notation / notation-appendices.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: de -*-
2
3 @ignore
4     Translation of GIT committish: 3d7ffa1f82bb44673134b28becf7898482fe7316
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 Translators: Till Paala
12
13 @c \version "2.12.0"
14
15 @node Notationsübersicht
16 @appendix Notationsübersicht
17 @translationof Notation manual tables
18
19 @c Please do not delete the following @ignore block.
20 @ignore
21 Note for editors and translators: In the following menu, two entries
22 are needed to link to a pair of automatically generated sections.
23 Please keep them and, if using emacs, do not run
24 texinfo-all-menus-update without manually restoring them back. These
25 menu entries are:
26
27 * Text markup commands::
28 * Text markup list commands::
29
30 and they should go just after
31 * Notenkopfstile::
32
33 and just before
34 * Liste der Arktikulationszeichen::
35 @end ignore
36
37 @menu
38 * Liste der Akkordbezeichnungen::   
39 * Übliche Akkord-Variablen::
40 * Vordefinierte Bund-Diagramme::         
41 * MIDI-Instrumente::         
42 * Liste der Farben::              
43 * Die Feta-Schriftart::               
44 * Notenkopfstile::            
45 * Text markup commands::        
46 * Text markup list commands::   
47 * Liste der Arktikulationszeichen::
48 * Schlagzeugnoten::   
49 * Alle Kontexteigenschaften::
50 * Technisches Glossar::   
51 * Eigenschaften des Layouts::           
52 * Bezeichner::                 
53 * Scheme-Funktionen::            
54 @end menu
55
56 @node Liste der Akkordbezeichnungen
57 @appendixsec Liste der Akkordbezeichnungen
58 @translationof Chord name chart
59
60 Die Tabelle zeigt die zwei üblichen Möglichkeiten, wie Akkordbezeichnungen
61 ausgegeben werden. Es wird auch die entsprechende Note ausgegeben.
62
63 @lilypondfile{chord-names-jazz.ly}
64
65
66 @node Übliche Akkord-Variablen
67 @appendixsec Übliche Akkord-Variablen
68 @translationof Common chord modifiers
69
70 Die Tabelle zeigt Modifikatoren für Akkorde, die im @code{\chordmode}-Modus
71 benutzt werden können, um übliche Akkordkonstrukte zu notieren.
72
73 @multitable @columnfractions .2 .3 .2 .2
74
75 @item
76 @b{Akkordtyp}
77 @tab
78 @b{Intervalle}
79 @tab
80 @b{Modifikator(en)}
81 @tab
82 @b{Beispiel}
83
84
85 @item
86 Dur
87 @tab
88 große Terz, Quinte
89 @tab
90 @code{5} oder nichts
91 @tab
92 @lilypond[line-width=3\cm,noragged-right, notime]
93 \chordmode {
94   c1:5
95 }
96 @end lilypond
97
98 @item
99 Moll
100 @tab
101 kleine Terz, Quinte
102 @tab
103 @code{m} oder @code{m5}
104 @tab
105 @lilypond[line-width=3\cm,noragged-right, notime]
106 \chordmode {
107   c1:m
108 }
109 @end lilypond
110
111 @item
112 Übermäßig
113 @tab
114 Große Terz, übermäßige Quinte
115 @tab
116 @code{aug}
117 @tab
118 @lilypond[line-width=3\cm,noragged-right, notime]
119 \chordmode {
120   c1:aug
121 }
122 @end lilypond
123
124 @item
125 Vermindert
126 @tab
127 Kleine Terz, verminderte Quinte
128 @tab
129 @code{dim}
130 @tab
131 @lilypond[line-width=3\cm,noragged-right, notime]
132 \chordmode {
133   c1:dim
134 }
135 @end lilypond
136
137 @item
138 Dominantsieben
139 @tab
140 Durdreiklang, kleine Septime
141 @tab
142 @code{7}
143 @tab
144 @lilypond[line-width=3\cm,noragged-right, notime]
145 \chordmode {
146   c1:7
147 }
148 @end lilypond
149
150 @item
151 Große Septime
152 @tab
153 Durdreiklang, große Septime
154 @tab
155 @code{maj7} oder @code{maj}
156 @tab
157 @lilypond[line-width=3\cm,noragged-right, notime]
158 \chordmode {
159   c1:maj7
160 }
161 @end lilypond
162
163 @item
164 Kleine Septime
165 @tab
166 Molldreiklang, kleine Septime
167 @tab
168 @code{m7}
169 @tab
170 @lilypond[line-width=3\cm,noragged-right, notime]
171 \chordmode {
172   c1:m7
173 }
174 @end lilypond
175
176 @item
177 Verminderte Septime
178 @tab
179 Verminderter Dreiklang, verminderte Septime
180 @tab
181 @code{dim7}
182 @tab
183 @lilypond[line-width=3\cm,noragged-right, notime]
184 \chordmode {
185   c1:dim7
186 }
187 @end lilypond
188
189 @item
190 Übermäßige Septime
191 @tab
192 Übermäßiger Dreiklang, kleine Septime
193 @tab
194 @code{aug7}
195 @tab
196 @lilypond[line-width=3\cm,noragged-right, notime]
197 \chordmode {
198   c1:aug7
199 }
200 @end lilypond
201
202 @item
203 halbverminderte Septime
204 @tab
205 Verminderter Dreklang, kleine Sept
206 @tab
207 @code{m7.5-}
208 @tab
209 @lilypond[line-width=3\cm,noragged-right, notime]
210 \chordmode {
211   c1:m7.5-
212 }
213 @end lilypond
214
215 @item
216 Kleine MollSept
217 @tab
218 Molldreiklang, große Septime
219 @tab
220 @code{maj7.5-}
221 @tab
222 @lilypond[line-width=3\cm,noragged-right, notime]
223 \chordmode {
224   c1:maj7.5-
225 }
226 @end lilypond
227
228 @item
229 Große Sexte
230 @tab
231 Durdreiklang, Sexte
232 @tab
233 @code{6}
234 @tab
235 @lilypond[line-width=3\cm,noragged-right, notime]
236 \chordmode {
237   c1:6
238 }
239 @end lilypond
240
241 @item
242 Kleine Sexte
243 @tab
244 Molldreiklang, Sexte
245 @tab
246 @code{m6}
247 @tab
248 @lilypond[line-width=3\cm,noragged-right, notime]
249 \chordmode {
250   c1:m6
251 }
252 @end lilypond
253
254 @item
255 Dominantnone
256 @tab
257 Dominantsept, große None
258 @tab
259 @code{9}
260 @tab
261 @lilypond[line-width=3\cm,noragged-right, notime]
262 \chordmode {
263   c1:9
264 }
265 @end lilypond
266
267 @item
268 Dur None
269 @tab
270 Große None, große Septime
271 @tab
272 @code{maj9}
273 @tab
274 @lilypond[line-width=3\cm,noragged-right, notime]
275 \chordmode {
276   c1:maj9
277 }
278 @end lilypond
279
280 @item
281 Moll None
282 @tab
283 Große None, kleine Septime
284 @tab
285 @code{m9}
286 @tab
287 @lilypond[line-width=3\cm,noragged-right, notime]
288 \chordmode {
289   c1:m9
290 }
291 @end lilypond
292
293 @item
294 Dominantundezime
295 @tab
296 Dominantnone, perfekte Undezime
297 @tab
298 @code{11}
299 @tab
300 @lilypond[line-width=3\cm,noragged-right, notime]
301 \chordmode {
302   c1:11
303 }
304 @end lilypond
305
306 @item
307 Durundezime
308 @tab
309 Große None, perfekte Undezime
310 @tab
311 @code{maj11}
312 @tab
313 @lilypond[line-width=3\cm,noragged-right, notime]
314 \chordmode {
315   c1:maj11
316 }
317 @end lilypond
318
319 @item
320 Mollundezime
321 @tab
322 Kleine None, perfekte Undezime
323 @tab
324 @code{m11}
325 @tab
326 @lilypond[line-width=3\cm,noragged-right, notime]
327 \chordmode {
328   c1:m11
329 }
330 @end lilypond
331
332 @item
333 Dominant-13
334 @tab
335 Dominantnone, große 13
336 @tab
337 @code{13}
338 @tab
339 @lilypond[line-width=3\cm,noragged-right, notime]
340 \chordmode {
341   c1:13
342 }
343 @end lilypond
344
345 @item
346 Dominant-13
347 @tab
348 Dominant-Undezime, große 13
349 @tab
350 @code{13.11}
351 @tab
352 @lilypond[line-width=3\cm,noragged-right, notime]
353 \chordmode {
354   c1:13.11
355 }
356 @end lilypond
357
358 @item
359 Dur-13
360 @tab
361 Große Undezime, große 13
362 @tab
363 @code{maj13.11}
364 @tab
365 @lilypond[line-width=3\cm,noragged-right, notime]
366 \chordmode {
367   c1:maj13.11
368 }
369 @end lilypond
370
371 @item
372 Moll-13
373 @tab
374 Kleine Undezime, große 13
375 @tab
376 @code{m13.11}
377 @tab
378 @lilypond[line-width=3\cm,noragged-right, notime]
379 \chordmode {
380   c1:m13.11
381 }
382 @end lilypond
383
384 @item
385 Sekundakkord
386 @tab
387 große Sekunde, perfekte Quinte
388 @tab
389 @code{sus2}
390 @tab
391 @lilypond[line-width=3\cm,noragged-right, notime]
392 \chordmode {
393   c1:sus2
394 }
395 @end lilypond
396
397 @item
398 Quartakkord
399 @tab
400 perfekte Quarte, perfekte Quinte
401 @tab
402 @code{sus4}
403 @tab
404 @lilypond[line-width=3\cm,noragged-right, notime]
405 \chordmode {
406   c1:sus4
407 }
408 @end lilypond
409
410
411 @end multitable
412
413
414 @node Vordefinierte Bund-Diagramme
415 @appendixsec Vordefinierte Bund-Diagramme
416 @translationof Predefined fretboard diagrams
417
418 Die Tabelle zeigt alle vordefinierten Bunddiagramme.
419
420 @lilypondfile{display-predefined-fretboards.ly}
421
422
423
424 @node MIDI-Instrumente
425 @appendixsec MIDI-Instrumente
426 @translationof MIDI instruments
427
428 Hier eine Liste von Musikinstrumentenbezeichnungen, die als Name für 
429 @code{midiInstrument} benutzt werden können.
430 @c Todo: translate music instrument's names to German
431
432 @cindex MIDI-Instrumentenbezeichnungen
433
434 @example
435 acoustic grand            contrabass           lead 7 (fifths)
436 bright acoustic           tremolo strings      lead 8 (bass+lead)
437 electric grand            pizzicato strings    pad 1 (new age)
438 honky-tonk                orchestral harp      pad 2 (warm)
439 electric piano 1          timpani              pad 3 (polysynth)
440 electric piano 2          string ensemble 1    pad 4 (choir)
441 harpsichord               string ensemble 2    pad 5 (bowed)
442 clav                      synthstrings 1       pad 6 (metallic)
443 celesta                   synthstrings 2       pad 7 (halo)
444 glockenspiel              choir aahs           pad 8 (sweep)
445 music box                 voice oohs           fx 1 (rain)
446 vibraphone                synth voice          fx 2 (soundtrack)
447 marimba                   orchestra hit        fx 3 (crystal)
448 xylophone                 trumpet              fx 4 (atmosphere)
449 tubular bells             trombone             fx 5 (brightness)
450 dulcimer                  tuba                 fx 6 (goblins)
451 drawbar organ             muted trumpet        fx 7 (echoes)
452 percussive organ          french horn          fx 8 (sci-fi)
453 rock organ                brass section        sitar
454 church organ              synthbrass 1         banjo
455 reed organ                synthbrass 2         shamisen
456 accordion                 soprano sax          koto
457 harmonica                 alto sax             kalimba
458 concertina                tenor sax            bagpipe
459 acoustic guitar (nylon)   baritone sax         fiddle
460 acoustic guitar (steel)   oboe                 shanai
461 electric guitar (jazz)    english horn         tinkle bell
462 electric guitar (clean)   bassoon              agogo
463 electric guitar (muted)   clarinet             steel drums
464 overdriven guitar         piccolo              woodblock
465 distorted guitar          flute                taiko drum
466 guitar harmonics          recorder             melodic tom
467 acoustic bass             pan flute            synth drum
468 electric bass (finger)    blown bottle         reverse cymbal
469 electric bass (pick)      shakuhachi           guitar fret noise
470 fretless bass             whistle              breath noise
471 slap bass 1               ocarina              seashore
472 slap bass 2               lead 1 (square)      bird tweet
473 synth bass 1              lead 2 (sawtooth)    telephone ring
474 synth bass 2              lead 3 (calliope)    helicopter
475 violin                    lead 4 (chiff)       applause
476 viola                     lead 5 (charang)     gunshot
477 cello                     lead 6 (voice)
478 @end example
479
480
481 @node Liste der Farben
482 @appendixsec Liste der Farben
483 @translationof List of colors
484
485 @subsubheading Normale Farben
486
487 Die Syntax zur Benutzung findet sich im Abschnitt @ref{Farbige Objekte}.
488
489 @cindex Liste der Farben
490 @cindex Farben, Liste
491
492 @verbatim
493 black       white          red         green
494 blue        cyan           magenta     yellow
495 grey        darkred        darkgreen   darkblue
496 darkcyan    darkmagenta    darkyellow
497 @end verbatim
498
499
500 @subsubheading X-Farbbezeichnungen
501
502 X-Farbbezeichnungen haben verschiedene Varianten:
503
504 Alle Bezeichnungen, die als einziges Wort mit Großbuchstaben 
505 geschrieben werden (bspw. @q{LightSlateBlue}), können auch 
506 von Leerzeichen getrennt geschrieben werden
507 (also @q{light slate blue}).
508
509 Das Wort @q{grey} kann in jedem Fall auch @q{gray} geschrieben 
510 werden (bspw. @q{DarkSlateGray}).
511
512 Manche Bezeichnungen können auch ein numerales Suffix tragen 
513 (etwa @q{LightSalmon4}).
514
515
516 @subsubheading Farben ohne eine numerale Endung
517
518 @verbatim
519 snow            GhostWhite      WhiteSmoke      gainsboro       FloralWhite
520 OldLace         linen           AntiqueWhite    PapayaWhip      BlanchedAlmond
521 bisque          PeachPuff       NavajoWhite     moccasin        cornsilk
522 ivory           LemonChiffon    seashell        honeydew        MintCream
523 azure           AliceBlue       lavender        LavenderBlush   MistyRose
524 white           black           DarkSlateGrey   DimGrey         SlateGrey
525 LightSlateGrey  grey            LightGrey       MidnightBlue    navy
526 NavyBlue        CornflowerBlue  DarkSlateBlue   SlateBlue       MediumSlateBlue
527 LightSlateBlue  MediumBlue      RoyalBlue       blue            DodgerBlue
528 DeepSkyBlue     SkyBlue         LightSkyBlue    SteelBlue       LightSteelBlue
529 LightBlue       PowderBlue      PaleTurquoise   DarkTurquoise   MediumTurquoise
530 turquoise       cyan            LightCyan       CadetBlue       MediumAquamarine
531 aquamarine      DarkGreen       DarkOliveGreen  DarkSeaGreen    SeaGreen
532 MediumSeaGreen  LightSeaGreen   PaleGreen       SpringGreen     LawnGreen
533 green           chartreuse      MediumSpringGreen       GreenYellow     LimeGreen
534 YellowGreen     ForestGreen     OliveDrab       DarkKhaki       khaki
535 PaleGoldenrod   LightGoldenrodYellow    LightYellow     yellow  gold
536 LightGoldenrod  goldenrod       DarkGoldenrod   RosyBrown       IndianRed
537 SaddleBrown     sienna          peru            burlywood       beige
538 wheat           SandyBrown      tan             chocolate       firebrick
539 brown           DarkSalmon      salmon          LightSalmon     orange
540 DarkOrange      coral           LightCoral      tomato          OrangeRed
541 red             HotPink         DeepPink        pink            LightPink
542 PaleVioletRed   maroon          MediumVioletRed VioletRed       magenta
543 violet          plum            orchid          MediumOrchid    DarkOrchid
544 DarkViolet      BlueViolet      purple          MediumPurple    thistle
545 DarkGrey        DarkBlue        DarkCyan        DarkMagenta     DarkRed
546 LightGreen
547 @end verbatim
548
549
550 @subsubheading Farben mit einer numeralen Endung
551
552 Für die folgenden Bezeichnungen kann das Suffix N durch eine 
553 Zahl von 1--4 ersetzt werden.
554
555 @verbatim
556 snowN           seashellN       AntiqueWhiteN   bisqueN         PeachPuffN
557 NavajoWhiteN    LemonChiffonN   cornsilkN       ivoryN          honeydewN
558 LavenderBlushN  MistyRoseN      azureN          SlateBlueN      RoyalBlueN
559 blueN           DodgerBlueN     SteelBlueN      DeepSkyBlueN    SkyBlueN
560 LightSkyBlueN   LightSteelBlueN LightBlueN      LightCyanN      PaleTurquoiseN
561 CadetBlueN      turquoiseN      cyanN           aquamarineN     DarkSeaGreenN
562 SeaGreenN       PaleGreenN      SpringGreenN    greenN          chartreuseN
563 OliveDrabN      DarkOliveGreenN khakiN          LightGoldenrodN LightYellowN
564 yellowN         goldN           goldenrodN      DarkGoldenrodN  RosyBrownN
565 IndianRedN      siennaN         burlywoodN      wheatN          tanN
566 chocolateN      firebrickN      brownN          salmonN         LightSalmonN
567 orangeN         DarkOrangeN     coralN          tomatoN         OrangeRedN
568 redN            DeepPinkN       HotPinkN        pinkN           LightPinkN
569 PaleVioletRedN  maroonN         VioletRedN      magentaN        orchidN
570 plumN           MediumOrchidN   DarkOrchidN     purpleN         MediumPurpleN
571 thistleN
572 @end verbatim
573
574
575 @subsubheading Grauskala
576
577 Eine Grauskala kann mit der Bezeichnung
578
579 @example
580 greyN
581 @end example
582
583 @noindent
584 erstellt werden, wobei N eine Zahl von 0--100 darstellt.
585
586
587 @node Die Feta-Schriftart
588 @appendixsec Die Feta-Schriftart
589 @translationof The Feta font
590
591 @cindex Feta font
592 @cindex Font, Feta
593
594 Die folgenden Symbole sind als Emmentaler-Schriftart verfügbar; auf sie 
595 kann direkt zugegriffen werden, indem man die übliche Textbeschriftung 
596 benutzt. @code{\musicglyph} greift direkt auf die Notationsschriftart 
597 zu (bspw. @code{g^\markup @{
598 \musicglyph #"scripts.segno" @}}). Siehe auch @ref{Text formatieren}.
599
600 @menu
601 * Notenschlüssel-Glyphen::
602 * Taktart-Glyphen::
603 * Zahlen-Glyphen::
604 * Versetzungszeichen-Glyphen::
605 * Standard-Notenkopf-Glyphen::
606 * Spezielle Notenkopf-Glyphen::
607 * Geformte Notenkopf-Glyphen::
608 * Pausen-Glyphen::
609 * Fähnchen-Glyphen::
610 * Punkt-Glyphen::
611 * Dynamik-Glyphen::
612 * Schrift-Glyphen::
613 * Pfeilkopf-Glyphen::
614 * Klammerspitzen-Glyphen::
615 * Pedal-Glyphen::
616 * Akkordion-Glyphen::
617 * Vaticana-Glyphen::
618 * Medicaea-Glyphen::
619 * Hufnagel-Glyphen::
620 * Mensural-Glyphen::
621 * Neomensural-Glyphen::
622 * Petrucci-Glyphen::
623 * Solesmes-Glyphen::
624 @end menu
625
626
627 @node Notenschlüssel-Glyphen
628 @unnumberedsubsec Notenschlüssel-Glyphen
629 @translationof Clef glyphs
630
631 @lilypond[quote]
632 \include "font-table.ly"
633 \markuplines \override-lines #'(word-space . 4)
634              \doc-chars #clefs
635 @end lilypond
636
637
638 @node Taktart-Glyphen
639 @unnumberedsubsec Taktart-Glyphen
640 @translationof Time Signature glyphs
641
642
643 @lilypond[quote]
644 \include "font-table.ly"
645 \markuplines \override-lines #'(word-space . 4)
646              \doc-chars #timesig
647 @end lilypond
648
649
650 @node Zahlen-Glyphen
651 @unnumberedsubsec Zahlen-Glyphen
652 @translationof Number glyphs
653
654 @lilypond[quote]
655 \include "font-table.ly"
656 \markuplines \override-lines #'(word-space . 4)
657              \doc-chars #numbers
658 @end lilypond
659
660
661 @node Versetzungszeichen-Glyphen
662 @unnumberedsubsec Versetzungszeichen-Glyphen
663 @translationof Accidental glyphs
664
665 @lilypond[quote]
666 \include "font-table.ly"
667 \markuplines \override-lines #'(word-space . 4)
668              \doc-chars #accidentals
669 @end lilypond
670
671
672 @node Standard-Notenkopf-Glyphen
673 @unnumberedsubsec Standard-Notenkopf-Glyphen
674 @translationof Default Notehead glyphs
675
676 @lilypond[quote]
677 \include "font-table.ly"
678 \markuplines \override-lines #'(word-space . 4)
679              \doc-chars #default-noteheads
680 @end lilypond
681
682
683 @node Spezielle Notenkopf-Glyphen
684 @unnumberedsubsec Spezielle Notenkopf-Glyphen
685 @translationof Special Notehead glyphs
686
687 @lilypond[quote]
688 \include "font-table.ly"
689 \markuplines \override-lines #'(word-space . 4)
690              \doc-chars #special-noteheads
691 @end lilypond
692
693
694 @node Geformte Notenkopf-Glyphen
695 @unnumberedsubsec Geformte Notenkopf-Glyphen
696 @translationof Shape-note Notehead glyphs
697
698 @lilypond[quote]
699 \include "font-table.ly"
700 \markuplines \override-lines #'(word-space . 4)
701              \doc-chars #shape-note-noteheads
702 @end lilypond
703
704
705 @node Pausen-Glyphen
706 @unnumberedsubsec Pausen-Glyphen
707 @translationof Rest glyphs
708
709 @lilypond[quote]
710 \include "font-table.ly"
711 \markuplines \override-lines #'(word-space . 4)
712              \doc-chars #rests
713 @end lilypond
714
715
716 @node Fähnchen-Glyphen
717 @unnumberedsubsec Fähnchen-Glyphen
718 @translationof Flag glyphs
719
720 @lilypond[quote]
721 \include "font-table.ly"
722 \markuplines \override-lines #'(word-space . 4)
723              \doc-chars #flags
724 @end lilypond
725
726
727 @node Punkt-Glyphen
728 @unnumberedsubsec Punkt-Glyphen
729 @translationof Dot glyphs
730
731 @lilypond[quote]
732 \include "font-table.ly"
733 \markuplines \override-lines #'(word-space . 4)
734              \doc-chars #dots
735 @end lilypond
736
737
738 @node Dynamik-Glyphen
739 @unnumberedsubsec Dynamik-Glyphen
740 @translationof Dynamic glyphs
741
742 @lilypond[quote]
743 \include "font-table.ly"
744 \markuplines \override-lines #'(word-space . 4)
745              \doc-chars #dynamics
746 @end lilypond
747
748
749 @node Schrift-Glyphen
750 @unnumberedsubsec Schrift-Glyphen
751 @translationof Script glyphs
752 @lilypond[quote]
753 \include "font-table.ly"
754 \markuplines \override-lines #'(word-space . 4)
755              \doc-chars #scripts
756 @end lilypond
757
758
759 @node Pfeilkopf-Glyphen
760 @unnumberedsubsec Pfeilkopf-Glyphen
761 @translationof Arrowhead glyphs
762
763 @lilypond[quote]
764 \include "font-table.ly"
765 \markuplines \override-lines #'(word-space . 4)
766              \doc-chars #arrowheads
767 @end lilypond
768
769
770 @node Klammerspitzen-Glyphen
771 @unnumberedsubsec Klammerspitzen-Glyphen
772 @translationof Bracket-tip glyphs
773
774 @lilypond[quote]
775 \include "font-table.ly"
776 \markuplines \override-lines #'(word-space . 4)
777              \doc-chars #brackettips
778 @end lilypond
779
780
781 @node Pedal-Glyphen
782 @unnumberedsubsec Pedal-Glyphen
783 @translationof Pedal glyphs
784
785 @lilypond[quote]
786 \include "font-table.ly"
787 \markuplines \override-lines #'(word-space . 4)
788              \doc-chars #pedal
789 @end lilypond
790
791
792 @node Akkordion-Glyphen
793 @unnumberedsubsec Akkordion-Glyphen
794 @translationof Accordion glyphs
795
796 @lilypond[quote]
797 \include "font-table.ly"
798 \markuplines \override-lines #'(word-space . 4)
799              \doc-chars #accordion
800 @end lilypond
801
802
803 @node Vaticana-Glyphen
804 @unnumberedsubsec Vaticana-Glyphen
805 @translationof Vaticana glyphs
806
807 @lilypond[quote]
808 \include "font-table.ly"
809 \markuplines \override-lines #'(word-space . 4)
810              \doc-chars #vaticana
811 @end lilypond
812
813
814 @node Medicaea-Glyphen
815 @unnumberedsubsec Medicaea-Glyphen
816 @translationof Medicaea glyphs
817
818 @lilypond[quote]
819 \include "font-table.ly"
820 \markuplines \override-lines #'(word-space . 4)
821              \doc-chars #medicaea
822 @end lilypond
823
824
825 @node Hufnagel-Glyphen
826 @unnumberedsubsec Hufnagel-Glyphen
827 @translationof Hufnagel glyphs
828
829 @lilypond[quote]
830 \include "font-table.ly"
831 \markuplines \override-lines #'(word-space . 4)
832              \doc-chars #hufnagel
833 @end lilypond
834
835
836 @node Mensural-Glyphen
837 @unnumberedsubsec Mensural-Glyphen
838 @translationof Mensural glyphs
839
840 @lilypond[quote]
841 \include "font-table.ly"
842 \markuplines \override-lines #'(word-space . 4)
843              \doc-chars #mensural
844 @end lilypond
845
846
847 @node Neomensural-Glyphen
848 @unnumberedsubsec Neomensural-Glyphen
849 @translationof Neomensural glyphs
850
851 @lilypond[quote]
852 \include "font-table.ly"
853 \markuplines \override-lines #'(word-space . 4)
854              \doc-chars #neomensural
855 @end lilypond
856
857
858 @node Petrucci-Glyphen
859 @unnumberedsubsec Petrucci-Glyphen
860 @translationof Petrucci glyphs
861
862 @lilypond[quote]
863 \include "font-table.ly"
864 \markuplines \override-lines #'(word-space . 4)
865              \doc-chars #petrucci
866 @end lilypond
867
868
869 @node Solesmes-Glyphen
870 @unnumberedsubsec Solesmes-Glyphen
871 @translationof Solesmes glyphs
872
873 @lilypond[quote]
874 \include "font-table.ly"
875 \markuplines \override-lines #'(word-space . 4)
876              \doc-chars #solesmes
877 @end lilypond
878
879
880
881 @node Notenkopfstile
882 @appendixsec Notenkopfstile
883 @translationof Note head styles
884
885 @cindex Notenkopfarten
886 @cindex Arten von Notenköpfen
887 @cindex Stile, Notenköpfe
888
889 Folgende Stile können zur Darstellung der Notenköpfe verwendet werden:
890
891 @lilypondfile[noindent]{note-head-style.ly}
892
893 @include markup-commands.tely
894
895 @include markup-list-commands.tely
896
897 @node Liste der Arktikulationszeichen
898 @appendixsec Liste der Arktikulationszeichen
899 @translationof List of articulations
900
901 @cindex Akzent
902 @cindex Marcato
903 @cindex Staccatissimo
904 @cindex Espressivo
905 @cindex Fermate
906 @cindex Gedämpft
907 @cindex Staccato
908 @cindex Portato
909 @cindex Tenuto
910 @cindex Aufstrich
911 @cindex Abstrich
912 @cindex Fußbezeichnung
913 @cindex Orgelpedalbezeichnung
914 @cindex Triller
915 @cindex Offen
916 @cindex Halboffen
917 @cindex Flageolet
918 @cindex Praller
919 @cindex Mordent
920 @cindex Doppelpraller
921 @cindex Prallermordent
922 @cindex Fingersatz
923 @cindex Daumenbezeichnung
924 @cindex Segno
925 @cindex Coda
926 @cindex Varcoda
927
928 @lilypondfile[quote,texidoc]{script-chart.ly}
929
930
931 @node Schlagzeugnoten
932 @appendixsec Schlagzeugnoten
933 @translationof Percussion notes
934
935 @lilypondfile[quote]{percussion-chart.ly}
936
937
938 @node Technisches Glossar
939 @appendixsec Technisches Glossar
940 @translationof Technical glossary
941
942 Ein Glossar der technischen Ausdrücke und Konzepte, die von
943 LilyPond intern benutzt werden.
944
945 @menu
946 * callback::
947 * glyph (Glyphe)::
948 * grob (Grob)::
949 * interface (Schnittstelle)::
950 * lexer::
951 * output-def::
952 * parser (Syntaxanalysierer)::
953 * parser variable::
954 * prob::
955 * simple-closure::
956 * smob::
957 * stencil::
958 @end menu
959
960 @node callback
961 @unnumberedsubsec callback
962 @translationof callback
963
964 @cindex callback
965
966 Ein @strong{callback} ist eine Routine, Funktion oder Methode,
967 deren Referenz in einem Aufruf als Argument an eine andere
968 Routine weitergereicht wird, sodass die aufgerufene Routine
969 ermöglicht wird, das Argument zu aktivieren.  Die Technik
970 ermöglicht es einer niedrigeren Ebene des Programmes, eine
971 Funktion  aufzurufen, die auf höherer Ebene definiert wurde.
972 Callbacks werden sehr ausgiebig in LilyPond eingesetzt, um
973 es Scheme-Code auf der Benutzerebene zu erlauben, wie viele
974 Funktionen der niedrigeren Ebene ausgeführt werden sollen.
975
976 @node glyph (Glyphe)
977 @unnumberedsubsec glyph (Glyphe)
978 @translationof glyph
979
980 @cindex glyph
981 @cindex Glyphe
982 @cindex font
983 @cindex typeface
984 @cindex Schriftfamilie
985
986 Ein @strong{glyph} ist eine bestimmte graphische Repräsentation
987 eines typographischen Charakters oder einer Kombination von
988 zwei oder mehr Charakteren, die dann eine Ligatur bilden.  Eine
989 Gruppe an Glyphen des gleichen Stils bilden ein Font, und
990 eine Gruppe an Fonts, die mehrere Stile darstellen, bilden
991 eine Schriftfamilie (engl. typeface).
992
993
994 @seealso
995 Notationsreferenz:
996 @ref{Fonts},
997 @ref{Text encoding}.
998
999
1000 @node grob (Grob)
1001 @unnumberedsubsec grob (Grob)
1002 @translationof grob
1003
1004 @cindex grob
1005 @cindex layout objects
1006 @cindex graphical objects
1007 @cindex Layoutobjekte
1008 @cindex graphische Objekte
1009
1010 LilyPond-Objekte, die Elemente der Notation in der graphischen
1011 Ausgabe des Programmen darstellen, wie etwa Notenköpfe, Hälse,
1012 Bögen, Bindebögen, Fingersatz, Schlüssel usw., werden 
1013 @qq{Layout-Objekte} genannt, auch oft als @qq{GRaphische OBjekte}
1014 bezeichnet, was dann zu  @strong{grob} abgekürzt wird.
1015
1016 @seealso
1017 Handbuch zum Lernen:
1018 @rlearning{Objects and interfaces},
1019 @rlearning{Naming conventions of objects and properties},
1020 @rlearning{Properties of layout objects}.
1021
1022 Referenz der Interna:
1023 @rinternals{All layout objects}.
1024
1025
1026 @node interface (Schnittstelle)
1027 @unnumberedsubsec interface (Schnittstelle)
1028 @translationof interface
1029
1030 @cindex interface
1031 @cindex grob-interface
1032 @cindex Schnittstelle von graphischen Objekten
1033 @cindex graphische Objekte, Schnittstellen
1034
1035 Aktionen und Eigenschaften, die eine Gruppe von Grobs gemeinsam
1036 haben, werden in ein Objekt gesammelt, das als @code{grob-interface}
1037 oder auch @qq{Schnittstelle} (engl. interface) bezeichnet wird.
1038
1039
1040 @seealso
1041 Handbuch zum Lernen:
1042 @rlearning{Objects and interfaces},
1043 @rlearning{Naming conventions of objects and properties},
1044 @rlearning{Properties found in interfaces}.
1045
1046 Notationsreferenz:
1047 @ref{Layout interfaces}.
1048
1049 Referenz der Interna:
1050 @rinternals{Graphical Object Interfaces}.
1051
1052
1053 @node lexer
1054 @unnumberedsubsec lexer
1055 @translationof lexer
1056
1057 @cindex lexer
1058
1059 Ein @strong{lexer} ist ein Programm, das eine Charaktersequenz
1060 in eines Sequenz von Tokens übersetzt.  Dieser Prozess wird als
1061 lexikalische Analyse bezeichnet.  Der LilyPond-Lexer konvertiert
1062 eine Eingabedatei (@code{.ly} in eine Datei mit Tokens, die sich
1063 besser für den nächsten Schritt der Verarbeitung, nämlich das
1064 Parsen, eignet.  Siehe @ref{parser}.
1065
1066 @node output-def
1067 @unnumberedsubsec output-def
1068 @translationof output-def
1069
1070 @cindex output-def
1071
1072 Eine Instanz der @code{Output-def}-Klasse enthält die Methoden und
1073 Datenstruktur, die mit einem Ausgabeabschnitt assoziiert wird.
1074 Instanzen werden für @code{midi}, @code{layout} und @code{paper}-Umgebungen
1075 erstellt.
1076
1077
1078 @node parser (Syntaxanalysierer)
1079 @unnumberedsubsec parser (Syntaxanalysierer)
1080 @translationof parser
1081
1082 @cindex parser
1083
1084 Ein @strong{parser} analysiert die Tokensequenzen, die von einem
1085 Lexer erstellt wurden, um deren grammatikalische Struktur zu entschlüsseln,
1086 wie sie von den Regeln des Eingabeformates vorgegeben werden.
1087
1088
1089 @node parser variable
1090 @unnumberedsubsec parser variable
1091 @translationof parser variable
1092
1093 Diese Variablen werden direkt in Scheme definiert.  Von ihrer direkten
1094 Benutzung durch den Benutzer wird streng abgeraten, weil ihre
1095 Semantikzuordnung sehr verwirrend sein kann.
1096
1097 Wenn der Wert einer derartigen Variable in einer @code{.ly}-Datei
1098 verändert wird, ist diese Änderung global, und wenn sie nicht
1099 explizit rückgängig gemacht wird, wird der neue Wert bis zum Ende
1100 der Datei gelten und dabei sowohl aufeinander folgende
1101 @code{\score}-Umgebungen als auch externe Dateien, die mit
1102 @code{\include} geladen werden, beeinflussen.  Das kann zu nicht
1103 gewollten Konsequenzen führen, und in komplizierteren Projekten
1104 kann es sehr schwer sein, die immer wieder auftretenden Fehler
1105 zu beheben.
1106
1107 LilyPond benutzt folgende Parser-Variablen:
1108
1109 @itemize
1110 @item afterGraceFraction
1111 @item musicQuotes
1112 @item mode
1113 @item output-count
1114 @item output-suffix
1115 @item parseStringResult
1116 @item partCombineListener
1117 @item pitchnames
1118 @item toplevel-bookparts
1119 @item toplevel-scores
1120 @item showLastLength
1121 @item showFirstLength
1122 @end itemize
1123
1124
1125 @node prob
1126 @unnumberedsubsec prob
1127 @translationof prob
1128 TODO
1129
1130 @node simple-closure
1131 @unnumberedsubsec simple-closure
1132 @translationof simple-closure
1133 TODO
1134
1135 @node smob
1136 @unnumberedsubsec smob
1137 @translationof smob
1138 TODO
1139
1140 @node stencil
1141 @unnumberedsubsec stencil
1142 @translationof stencil
1143 TODO
1144
1145
1146 @node Alle Kontexteigenschaften
1147 @appendixsec Alle Kontexteigenschaften
1148 @translationof All context properties
1149
1150 @include context-properties.tely
1151
1152
1153 @node Eigenschaften des Layouts
1154 @appendixsec Eigenschaften des Layouts
1155 @translationof Layout properties
1156
1157 @include layout-properties.tely
1158
1159
1160 @node Bezeichner
1161 @appendixsec Bezeichner
1162 @translationof Identifiers
1163
1164 @include identifiers.tely
1165
1166
1167 @node Scheme-Funktionen
1168 @appendixsec Scheme-Funktionen
1169 @translationof Scheme functions
1170
1171 @include scheme-functions.tely
1172