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