]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/ancient.itely
Merge master into nested-bookparts
[lilypond.git] / Documentation / de / user / ancient.itely
1 @c -*- coding: utf-8; mode: texinfo; documentlanguage: fr -*-
2 @c This file is part of lilypond.tely
3 @ignore
4     Translation of GIT committish: d0614c27e88dc7bd3993f3744a388749ba93b267
5
6     When revising a translation, copy the HEAD committish of the
7     version that you are working on.  See TRANSLATION for details.
8 @end ignore
9
10 @c \version "2.11.61"
11
12
13 @node Ancient notation
14 @section Ancient notation
15
16 @lilypondfile[quote]{ancient-headword.ly}
17
18 @cindex Vaticana, Editio
19 @cindex Medicaea, Editio
20 @cindex Hufnagel
21 @cindex Petrucci
22 @cindex Mensuralnotation
23
24 @menu
25 * Introduction to ancient notation::
26 * Alternative note signs::
27 * Additional note signs::
28 * Pre-defined contexts::
29 * Transcribing ancient music::
30 * Editorial markings::
31 @end menu
32
33
34 @node Introduction to ancient notation
35 @subsection Introduction to ancient notation
36
37 @untranslated
38
39 @menu
40 * Ancient notation supported::
41 @end menu
42
43
44 @node Ancient notation supported
45 @unnumberedsubsubsec Ancient notation supported
46
47 @untranslated
48
49
50 @node Alternative note signs
51 @subsection Alternative note signs
52
53 @untranslated
54
55 @menu
56 * Ancient note heads::
57 * Ancient accidentals::
58 * Ancient rests::
59 * Ancient clefs::
60 * Ancient flags::
61 * Ancient time signatures::
62 @end menu
63
64
65 @node Ancient note heads
66 @unnumberedsubsubsec Ancient note heads
67
68 @cindex Notenköpfe, Alte Musik
69
70 Für die Notation Alter Musik kann ein Notenkopfstil ausgewählt werden, der sich
71 vom Standard (@code{default}) unterscheidet. Dies wird erreicht, indem die
72 @code{style}-Eigenschaft der Notenkopf-(@rinternals{NoteHead})-Objekte auf
73 einen der Werte @code{baroque}, @code{neomensural}, @code{mensural} oder
74 @code{petrucci} gesetzt wird. Der barocke (@code{baroque}) Stil unterscheidet
75 sich vom Standard (@code{default}) nur in sofern, als eine viereckige Form für
76 die Brevis (@code{\breve}) benutzt wird. Der @code{neomensural}-Stil
77 unterscheidet sich vom barocken Stil darin, dass hier rhomboide Notenköpfe für
78 ganze Noten und kleinere Notenwerte eingesetzt werden. Hälse werden über oder
79 unter den Notenköpfen zentriert. Dieser Stil ist vor allem dann sinnvoll, wenn
80 mensurale Musik transkribiert werden soll, etwa für ein Incipit. Der
81 mensurale (@code{mensural}) Stil erstellt Notenköpfe, die das Aussehen
82 historischer Drucke des 16. Jahrhunderts imitieren. Der @code{petrucci}-Stil
83 schließlich imitiert auch historische Drucke, verwendet allerdings größere
84 Notenköpfe.
85
86 Das folgende Beispiel soll den neomensuralen Stil demonstrieren:
87
88 @lilypond[quote,fragment,ragged-right,verbatim]
89 \set Score.skipBars = ##t
90 \override NoteHead #'style = #'neomensural
91 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
92 @end lilypond
93
94 Für die Notation des Gregorianischen Chorals werden vom
95 @rinternals{Vaticana_ligature_engraver} automatisch die richtigen Notenköpfe
96 ausgewählt, so dass man den Stil nicht manuell setzen muss. Trotzdem kann
97 der Stil manuell verändert werden, z. B. auf den Wert
98 @code{vaticana_punctum}, um Punktum-Neumen zu produzieren. Gleichfalls erstellt
99 der @rinternals{Mensural_ligature_engraver} automatisch Ligaturen der
100 Mensuralnotation. Siehe @ref{Ligatures} zu einer Übersicht über die Funktion
101 und Notation von Ligaturen.
102
103 @seealso
104
105 @ref{Note head styles} stellt einen Überblick über alle verfügbaren
106 Notenkopfstile zur Verfügung.
107
108
109 @node Ancient accidentals
110 @unnumberedsubsubsec Ancient accidentals
111
112 @cindex Vorzeichen, Alte Musik
113
114 Mit der @code{glyph-name-alist}-Eigenschaft der
115 Versetzungszeichen-(@rinternals{Accidental})- und
116 Vorzeichen-(@rinternals{KeySignature})-Eigenschaften können Vorzeichen
117 und Versetzungszeichen für die Alte Musik ausgewählt werden.
118
119 @lilypond[quote,ragged-right,staffsize=26]
120 \score {
121 {
122   \textLengthOn
123   s^\markup {
124     \column {
125       "vaticana"
126       \line { " " \musicglyph #"accidentals.vaticana-1"
127         " " \musicglyph #"accidentals.vaticana0" }
128     }
129     \column {
130       "medicaea"
131       \line { " " \musicglyph #"accidentals.medicaea-1" }
132     }
133     \column {
134       "hufnagel"
135       \line { " " \musicglyph #"accidentals.hufnagel-1" }
136     }
137     \column {
138       "mensural"
139       \line { " " \musicglyph #"accidentals.mensural-1"
140         " " \musicglyph #"accidentals.mensural1" }
141     }
142   }
143 }
144 \layout {
145   interscoreline = 1
146   \context { \Score \remove "Bar_number_engraver" }
147   \context { \Staff
148       \remove "Clef_engraver"
149       \remove "Key_engraver"
150       \remove "Time_signature_engraver"
151       \remove "Staff_symbol_engraver"
152       \override VerticalAxisGroup #'minimum-Y-extent = ##f
153     }
154   }
155 }
156 @end lilypond
157
158 Wie zu sehen ist, werden nicht alle Versetzungszeichen von jedem Stil
159 unterstützt. Wenn versucht wird, ein Versetzungszeichen zu notieren,
160 das von einem bestimmten Stil nicht unterstützt wird, wechselt LilyPond zu einem
161 anderen Stil, wie in dem Beispiel
162 @code{ancient-accidentals.ly} demonstriert wird.
163 @c FIX: was @lsr{ancient,ancient-accidentals.ly} --FV
164
165
166 Ähnlich wie Versetzungszeichen können auch die Vorzeichen für die Angabe der
167 Tonart verändert werden, indem die @code{glyph-name-alist}-Eigenschaft
168 des @rinternals{KeySignature}-Objektes gesetzt wird.
169
170 @seealso
171
172 In diesem Handbuch: @ref{Pitches}, @ref{Accidentals} und
173 @ref{Automatic accidentals} geben eine allgemeine Einführung in die Benutzung
174 von Versetzungszeichen. Der Abschnitt @ref{Key signature} zeigt die allgemeine
175 Benutzung von Vorzeichen.
176
177 Programmreferenz:
178 @rinternals{KeySignature}.
179
180 Beispiele:
181 @rlsr{Ancient notation}.
182
183
184 @node Ancient rests
185 @unnumberedsubsubsec Ancient rests
186
187 @cindex Pausen, Alte Musik
188
189 Besondere Pausensymbole für die Notation der Alten Musik können mit der
190 @code{style}-Eigenschaft des graphischen Objektes (grob) @qq{Pause}
191 (@rinternals{Rest}) angewählt werden. Unterstützte Stile sind
192 klassisch (@code{classical}), @code{neomensural} und @code{mensural}.
193 Der klassische (@code{classical}) Stil unterscheidet sich vom Standardstil
194 (@code{default}) nur darin, dass die Viertelpause wie eine gespiegelte
195 Achtelpause aussieht. Der neomensurale Stil eignet sich gut, um z. B. das
196 Incipit von transkribierter Musik zu notieren. Der mensurale Stil ahmt die
197 Form von Pausen nach, wie man sie in Drucken des 16. Jahrhunderts finden kann.
198
199 Das nächste Beispiel demonstriert den neomensuralen (@code{neomensural})
200 Stil:
201
202 @lilypond[quote,fragment,ragged-right,verbatim]
203 \set Score.skipBars = ##t
204 \override Rest #'style = #'neomensural
205 r\longa r\breve r1 r2 r4 r8 r16
206 @end lilypond
207
208 Es gibt keine 32-stel- und 64-stel-Pausen für den mensuralen oder neomensuralen
209 Stil. Anstatt dessen werden die Pausenformen des Standardstiles verwendet.
210 Vgl. eine Liste aller vorhandenen Pausen in @code{pitches,rests}.
211 @c FIX: was lsr{pitches,rests}. -FV
212
213
214 Für die Notation des Gregorianischen Chorals gibt es keine Pausen; anstelle
215 dessen werden @ref{Divisiones} verwendet.
216
217 @seealso
218
219 In diesem Handbuch: Der Abschnitt @ref{Rests} enthält eine allgemeine
220 Einführung zur Benutzung von Pausen.
221
222
223 @node Ancient clefs
224 @unnumberedsubsubsec Ancient clefs
225
226 @cindex Schlüssel, Alte Musik
227
228 LilyPond unterstützt eine große Anzahl von Notenschlüsseln, von denen eine
229 ganze Anzahl für die Alte Musik geeignet ist.
230
231 In der Tabelle unten werden alle Schlüssel für die Alte Musik gezeigt, die
232 mit dem @code{\clef}-Befehl erreicht werden. Manche Schlüssel benutzen den
233 selben Schlüssel, unterscheiden sich aber in der Notenlinie, auf der der
234 Schlüssel notiert wird. In diesem Fällen ist eine Nummer im Schlüsselnamen
235 eingefügt. Man kann aber trotzdem eine beliebige Nummer erzwingen, wie es im
236 Abschnitt @ref{Clef} beschrieben wird. Die Note, die rechts von jedem Schlüssel
237 gesetzt ist, zeigt das @code{c'} in Bezug zu dem jeweiligen Schlüssel.
238
239 @multitable @columnfractions .4 .4 .2
240 @item
241 @b{Beschreibung}
242 @tab
243 @b{Unterstützte Schlüssel}
244 @tab
245 @b{Beispiel}
246
247 @item
248 Mensuraler C-Schlüssel im modernen Stil
249 @tab
250 @code{neomensural-c1}, @code{neomensural-c2},@*
251 @code{neomensural-c3}, @code{neomensural-c4}
252 @tab
253 @lilypond[fragment,relative=1,notime]
254   \clef "neomensural-c2" c
255 @end lilypond
256
257 @item
258 Mensuraler C-Schlüssel im Petrucci-Stil, zur Benutzung auf verschiedenen
259 Notenlinien (im
260 Beispiel den Schlüssel auf der zweiten Linie)
261 @tab
262 @code{petrucci-c1}, @code{petrucci-c2},@*
263 @code{petrucci-c3}, @code{petrucci-c4},@*
264 @code{petrucci-c5}
265 @tab
266 @lilypond[fragment,relative=1,notime]
267   \clef "petrucci-c2"
268   \override NoteHead #'style = #'mensural
269   c
270 @end lilypond
271
272 @item
273 Mensuraler F-Schlüssel im Petrucci-Stil
274 @tab
275 @code{petrucci-f}
276 @tab
277 @lilypond[fragment,relative=1,notime]
278   \clef "petrucci-f"
279   \override NoteHead #'style = #'mensural
280   c
281 @end lilypond
282
283 @item
284 Mensuraler G-Schlüssel im Petrucci-Stil
285 @tab
286 @code{petrucci-g}
287 @tab
288 @lilypond[fragment,relative=1,notime]
289   \clef "petrucci-g"
290   \override NoteHead #'style = #'mensural
291   c
292 @end lilypond
293
294 @item
295 Mensuraler C-Schlüssel im historischen Stil
296 @tab
297 @code{mensural-c1}, @code{mensural-c2},@*
298 @code{mensural-c3}, @code{mensural-c4}
299 @tab
300 @lilypond[fragment,relative=1,notime]
301   \clef "mensural-c2"
302   \override NoteHead #'style = #'mensural
303   c
304 @end lilypond
305
306 @item
307 Mensuraler F-Schlüssel im historischen Stil
308 @tab
309 @code{mensural-f}
310 @tab
311 @lilypond[fragment,relative=1,notime]
312   \clef "mensural-f"
313   \override NoteHead #'style = #'mensural
314   c
315 @end lilypond
316
317 @item
318 Mensuraler G-Schlüssel im historischen Stil
319 @tab
320 @code{mensural-g}
321 @tab
322 @lilypond[fragment,relative=1,notime]
323   \clef "mensural-g"
324   \override NoteHead #'style = #'mensural
325   c
326 @end lilypond
327
328 @item
329 Do-Schlüssel der Editio Vaticana
330 @tab
331 @code{vaticana-do1}, @code{vaticana-do2},@*
332 @code{vaticana-do3}
333 @tab
334 @lilypond[fragment,relative=1,notime]
335   \override Staff.StaffSymbol #'line-count = #4
336   \override Staff.StaffSymbol #'color = #red
337   \override Staff.LedgerLineSpanner #'color = #red
338   \override Voice.Stem #'transparent = ##t
339   \override NoteHead #'style = #'vaticana.punctum
340   \clef "vaticana-do2"
341   c
342 @end lilypond
343
344 @item
345 Fa-Schlüssel der Editio Vaticana
346 @tab
347 @code{vaticana-fa1}, @code{vaticana-fa2}
348 @tab
349 @lilypond[fragment,relative=1,notime]
350   \override Staff.StaffSymbol #'line-count = #4
351   \override Staff.StaffSymbol #'color = #red
352   \override Staff.LedgerLineSpanner #'color = #red
353   \override Voice.Stem #'transparent = ##t
354   \override NoteHead #'style = #'vaticana.punctum
355   \clef "vaticana-fa2"
356   c
357 @end lilypond
358
359 @item
360 Do-Schlüssel der Editio Medicaea
361 @tab
362 @code{medicaea-do1}, @code{medicaea-do2},@*
363 @code{medicaea-do3}
364 @tab
365 @lilypond[fragment,relative=1,notime]
366   \override Staff.StaffSymbol #'line-count = #4
367   \override Staff.StaffSymbol #'color = #red
368   \override Staff.LedgerLineSpanner #'color = #red
369   \override Voice.Stem #'transparent = ##t
370   \override NoteHead #'style = #'medicaea.punctum
371   \clef "medicaea-do2"
372   c
373 @end lilypond
374
375 @item
376 Fa-Schlüssel der Editio Medicaea
377 @tab
378 @code{medicaea-fa1}, @code{medicaea-fa2}
379 @tab
380 @lilypond[fragment,relative=1,notime]
381   \override Staff.StaffSymbol #'line-count = #4
382   \override Staff.StaffSymbol #'color = #red
383   \override Staff.LedgerLineSpanner #'color = #red
384   \override Voice.Stem #'transparent = ##t
385   \override NoteHead #'style = #'medicaea.punctum
386   \clef "medicaea-fa2"
387   c
388 @end lilypond
389
390 @item
391 Hufnagel Do-Schlüssel für den historischen Stil
392 @tab
393 @code{hufnagel-do1}, @code{hufnagel-do2},@*
394 @code{hufnagel-do3}
395 @tab
396 @lilypond[fragment,relative=1,notime]
397   \override Staff.StaffSymbol #'line-count = #4
398   \override Staff.StaffSymbol #'color = #red
399   \override Staff.LedgerLineSpanner #'color = #red
400   \override Voice.Stem #'transparent = ##t
401   \override NoteHead #'style = #'hufnagel.punctum
402   \clef "hufnagel-do2"
403   c
404 @end lilypond
405
406 @item
407 Hufnagel Fa-Schlüssel für den historischen Stil
408 @tab
409 @code{hufnagel-fa1}, @code{hufnagel-fa2}
410 @tab
411 @lilypond[fragment,relative=1,notime]
412   \override Staff.StaffSymbol #'line-count = #4
413   \override Staff.StaffSymbol #'color = #red
414   \override Staff.LedgerLineSpanner #'color = #red
415   \override Voice.Stem #'transparent = ##t
416   \override NoteHead #'style = #'hufnagel.punctum
417   \clef "hufnagel-fa2"
418   c
419 @end lilypond
420
421 @item
422 Kombinierter Do/Fa-Hufnagelschlüssel für den historischen Stil
423 @tab
424 @code{hufnagel-do-fa}
425 @tab
426 @lilypond[fragment,relative=1,notime]
427   \override Staff.StaffSymbol #'color = #red
428   \override Staff.LedgerLineSpanner #'color = #red
429   \override Voice.Stem #'transparent = ##t
430   \override NoteHead #'style = #'hufnagel.punctum
431   \clef "hufnagel-do-fa"
432   c
433 @end lilypond
434 @end multitable
435
436 @emph{Moderner Stil} bedeutet: @qq{Wie in modernen Editionen von
437 transkribierter Mensuralmusik benutzt.}
438
439 @emph{Petrucci-Stil} bedeutet: @qq{Inspiriert von Drucken, die der berühmte
440 Notensetzer Petrucci (1466--1539) produziert hat.}
441
442 @emph{Historischer Stil} bedeutet: @qq{Wie in anderen als Petruccis Editionen
443 gedruckt oder geschrieben wurde.}
444
445 @emph{Editio XXX-Stil} bedeutet: @qq{Wie in der Editio XXX gedruckt
446 wird.}
447
448 Petrucci verwendete C-Schlüssel mit unterschiedlich balanciertem vertikalen
449 Balken auf der linken Seite in Abhängigkeit davon, auf welcher Notenlinie
450 der Schlüssel gesetzt wird.
451
452 @seealso
453
454 In diesem Handbuch: siehe @ref{Clef}.
455
456 @knownissues
457
458 Der mensurale G-Schlüssel ist als Petrucci-G-Schlüssel deklariert.
459
460
461 @node Ancient flags
462 @unnumberedsubsubsec Ancient flags
463
464 @cindex Fähnchen, Alte Musik
465
466 Mit der Fähnchen-(@code{flag-style})-Eigenschaft der graphischen Objekte
467 @qq{Hals} (@rinternals{Stem}) können auch Fähnchen passend zu den Notenköpfen
468 der Alten Musik gesetzt werden. Neben dem Standardstil (@code{default}) ist
469 auch ein mensuraler Stil (@code{mensural}) unterstützt.
470
471 @lilypond[quote,fragment,ragged-right,verbatim]
472 \override Stem #'flag-style = #'mensural
473 \override Stem #'thickness = #1.0
474 \override NoteHead #'style = #'mensural
475 \autoBeamOff
476 c'8 d'8 e'8 f'8 c'16 d'16 e'16 f'16 c'32 d'32 e'32 f'32 s8
477 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
478 @end lilypond
479
480 Dabei ist die innerste Fahne immer vertikal auf eine Notenlinie ausgerichtet.
481
482 Es gibt keinen eigenen Stil für die @qq{neomensurale} Notation. Insofern sollte
483 für das Incipit bei der Transkription mensuraler Musik der Standardstil
484 benutzt werden. Für die Notation des Gregorianischen Chorals gibt es keine
485 Fähnchen.
486
487 @knownissues
488
489 Die Positionierung der Fähnchen an den Hälsen ist leicht verschoben seit einer
490 Änderung in einer frühen 2.3.x-Version.
491
492 Vertikale Ausrichtung der Fähnchen an einer Notenlinie geht von der Annahme
493 aus, dass der Hals entweder genau auf einer Notenlinie oder genau zwischen zwei
494 Notenlinien endet. Das ist aber nicht unbedingt immer der Fall, weil LilyPond
495 komplizierte Methoden zur Ermittlung des besten Layouts verwendet. Diese
496 Methoden sollten aber eigentlich nicht zur Notation von mensuraler Musik
497 eingesetzt werden.
498
499
500 @node Ancient time signatures
501 @unnumberedsubsubsec Ancient time signatures
502
503 @cindex Taktart, Alte Musik
504 @cindex Mensur
505
506 LilyPond besitzt grundlegende Unterstützung für mensurale Taktangaben. Die
507 Symbole sind starr verknüpft mit bestimmten Brüchen. Darum müssen die Werte
508 @code{n} und @code{m} der folgenden Tabelle in den Befehl
509 @code{\time n/m} eingesetzt werden, um die entsprechenden Symbole zu erhalten.
510
511 @lilypond[quote,ragged-right]
512 \layout {
513   indent = 0.0
514   \context {
515     \Staff
516     \remove Staff_symbol_engraver
517     \remove Clef_engraver
518     \remove Time_signature_engraver
519   }
520 }
521 {
522   \set Score.timing = ##f
523   \set Score.barAlways = ##t
524   s_\markup { "\\time 4/4" }^\markup { "       " \musicglyph
525 #"timesig.neomensural44" }
526   s
527   s_\markup { "\\time 2/2" }^\markup { "       " \musicglyph
528 #"timesig.neomensural22" }
529   s
530   s_\markup { "\\time 6/4" }^\markup { "       " \musicglyph
531 #"timesig.neomensural64" }
532   s
533   s_\markup { "\\time 6/8" }^\markup { "       " \musicglyph
534 #"timesig.neomensural68" }
535   \break
536   s_\markup { "\\time 3/2" }^\markup { "       " \musicglyph
537 #"timesig.neomensural32" }
538   s
539   s_\markup { "\\time 3/4" }^\markup { "       " \musicglyph
540 #"timesig.neomensural34" }
541   s
542   s_\markup { "\\time 9/4" }^\markup { "       " \musicglyph
543 #"timesig.neomensural94" }
544   s
545   s_\markup { "\\time 9/8" }^\markup { "       " \musicglyph
546 #"timesig.neomensural98" }
547   \break
548   s_\markup { "\\time 4/8" }^\markup { "       " \musicglyph
549 #"timesig.neomensural48" }
550   s
551   s_\markup { "\\time 2/4" }^\markup { "       " \musicglyph
552 #"timesig.neomensural24" }
553 }
554 @end lilypond
555
556 Mit der @code{style}-Eigenschaft des Objektes @rinternals{TimeSignature}
557 können die Taktarten angewählt werden. Unterstützte Stile sind:
558 @code{neomensural} und @code{mensural}. In der Tabelle oben wurde der
559 neomensurale Stil verwendet. Dieser Stil ist geeignet, um im Incipt von
560 transkribierter Mensuralmusik eingesetzt zu werden. Der mensurale Stil dagegen
561 ahmt die Form historischer Druck des 16. Jahrhunderts nach.
562
563 Im folgenden Beispiel sind die unterschiedlichen Stile dargestellt.
564
565 @lilypond[ragged-right,fragment,relative=1,quote]
566 {
567   \textLengthOn
568
569   \time 2/2
570   c1^\markup { \hspace #-2.0 \typewriter default }
571
572   \override Staff.TimeSignature #'style = #'numbered
573   \time 2/2
574   c1^\markup { \hspace #-2.0 \typewriter numbered }
575
576   \override Staff.TimeSignature #'style = #'mensural
577   \time 2/2
578   c1^\markup { \hspace #-2.0 \typewriter mensural }
579
580   \override Staff.TimeSignature #'style = #'neomensural
581   \time 2/2
582   c1^\markup { \hspace #-2.0 \typewriter neomensural }
583   \override Staff.TimeSignature #'style = #'single-digit
584   \time 2/2
585   c1^\markup { \hspace #-2.0 \typewriter single-digit }
586 }
587 @end lilypond
588
589 @seealso
590
591 In diesem Handbuch: @ref{Time signature} bietet eine allgemeine Übersicht über
592 den Einsatz von Taktangaben.
593
594 @knownissues
595
596 Die Verhältnisse der Notenwerte ändern sich nicht, wenn die Taktart (Mensur)
597 gewechselt wird. Zum Beispiel muss das Verhältnis 1 brevis = 3 semibrevis
598 (tempus perfectum) manuell erstellt werden, indem folgende Variable erstellt
599 wird:
600
601 @example
602 breveTP = #(ly:make-duration -1 0 3 2)
603 @dots{}
604 @{ c\breveTP f1 @}
605 @end example
606
607 @noindent
608 Hiermit wird die Variable @code{breveTP} auf den Wert
609 @qq{3/2 mal 2 = 3 mal eine Ganze} gesetzt.
610
611 Das @code{old6/8alt}-Symbol (ein alternatives Symbol für 6/8) kann nicht
612 mit dem Befehl @code{\time} angesprochen werden. Verwenden Sie anstatt dessen
613 eine Textbeschriftung (@code{\markup}).
614
615
616 @node Additional note signs
617 @subsection Additional note signs
618
619 @untranslated
620
621 @menu
622 * Ancient articulations::
623 * Custodes::
624 * Divisiones::
625 * Ligatures::
626 * White mensural ligatures::
627 * Gregorian square neumes ligatures::
628 @end menu
629
630
631 @node Ancient articulations
632 @unnumberedsubsubsec Ancient articulations
633
634 @cindex articulations
635
636 Zusätzlich zu den Standardartikulationszeichen, wie sie im Abschnitt
637 @ref{Articulations and ornamentations} beschrieben werden, werden auch Artikulationszeichen
638 für die Alte Musik zur Verfügung gestellt. Diese sind darauf hin geformt, dass
639 sie mit der Notation des Editio Vaticana-Stils verwendet werden können.
640
641 @lilypond[quote,ragged-right,verbatim]
642 \include "gregorian.ly"
643 \score {
644   \new VaticanaVoice {
645     \override TextScript #'font-family = #'typewriter
646     \override TextScript #'font-shape = #'upright
647     \override Script #'padding = #-0.1
648     a\ictus_"ictus" \break
649     a\circulus_"circulus" \break
650     a\semicirculus_"semicirculus" \break
651     a\accentus_"accentus" \break
652     \[ a_"episem" \episemInitium \pes b \flexa a b \episemFinis \flexa a \]
653   }
654 }
655 @end lilypond
656
657 @knownissues
658
659 Einige Artikulationszeichen sind vertikal zu dich an den entsprechenden
660 Notenköpfen gesetzt.
661
662 Die Episem-Linie wird in vielen Fällen nicht angezeigt. Wenn sie angezeigt wird,
663 ist das rechte Ende der Episem-Linie oft zu weit rechts.
664
665
666 @node Custodes
667 @unnumberedsubsubsec Custodes
668
669 @cindex Custodes
670
671 Ein @emph{custos} (Plural: @emph{custodes}; Lateinisch: @qq{Beschützer}) ist
672 ein Symbol, das am Ende jedes Notensystems erscheint. Es nimmt die Tonhöhe
673 der ersten Note der nächsten Zeile vorweg und hilft damit dem Vortragenden,
674 die Zeilenwechsel während der Vorführung zu bewältigen.
675
676 Custodes wurden bis zum 17. Jahrhundert sehr häufig in der Musiknotation
677 eingesetzt. Heute finden sie sich nur noch in einigen bestimmten
678 Notationsformen, etwa modernen Editionen des Gregorianischen Chorals wie die
679 @emph{editio vaticana}. LilyPond stellt unterschiedliche Custos-Symbole für
680 die unterschiedlichen Notationsstile zur Verfügung.
681
682 Damit Custodes angezeigt werden, muss ein @rinternals{Custos_engraver}
683 im @rinternals{Staff}-Kontext gefordert werden. Der Aufruf folgt im Rahmen
684 des Layout-Kontextes, wie das folgende Beispiel zeigt.
685
686 @example
687 \layout @{
688   \context @{
689     \Staff
690     \consists Custos_engraver
691     Custos \override #'style = #'mensural
692   @}
693 @}
694 @end example
695
696 Das Ergebnis sieht ungefähr folgendermaßen aus:
697
698 @lilypond[quote,ragged-right]
699 \score {
700 {
701   a'1
702   \override Staff.Custos #'style = #'mensural
703   \break
704   g'
705 }
706 \layout {
707   \context { \Staff \consists Custos_engraver }
708   }
709 }
710 @end lilypond
711
712 Das Custos-Zeichen wird von der @code{style}-Eigenschaft ausgewählt. Die
713 unterstützten Stile sind: @code{vaticana}, @code{medicaea}, @code{hufnagel}
714 und @code{mensural}. Sie werden im folgenden Fragment demonstriert.
715
716 @lilypond[quote,ragged-right,fragment]
717 \new Lyrics \lyricmode {
718   \markup { \column {
719     \typewriter "vaticana"
720     \line { " " \musicglyph #"custodes.vaticana.u0" }
721   } }
722   \markup { \column {
723     \typewriter "medicaea"
724     \line { " " \musicglyph #"custodes.medicaea.u0" }
725   }}
726   \markup { \column {
727     \typewriter "hufnagel"
728     \line { " " \musicglyph #"custodes.hufnagel.u0" }
729   }}
730   \markup { \column {
731     \typewriter "mensural"
732     \line { " " \musicglyph #"custodes.mensural.u0" }
733   }}
734 }
735 @end lilypond
736
737 @seealso
738
739 Programmreferenz:
740 @rinternals{Custos}.
741
742 Beispiele:
743 @rlsr{Ancient notation}.
744
745
746 @node Divisiones
747 @unnumberedsubsubsec Divisiones
748
749 @cindex divisio
750 @cindex divisiones
751 @cindex finalis
752
753 Eine @emph{divisio} (Plural: @emph{divisiones}; Latein: @qq{Teilung}) ist ein
754 Symbol des Notensystemkontextes, das benutzt wird, um Phrasierung und
755 Abschnitte im Gregorianischen Choral anzuzeigen. Die musikalische Bedeutung
756 von @emph{divisio minima}, @emph{divisio maior} und @emph{divisio maxima} kann
757 beschrieben werden als kurze, mittlere und lange Pause, ungefähr wie die
758 Atemzeichen aus dem Abschnitt @ref{Breath marks}. Das @emph{finalis}-Zeichen
759 bezeichnet nicht nur das Ende eines Chorals, sondern wird auch oft innerhalb
760 eines Antiphons/Responsoriums benutzt, um das Ende eines Abschnitts anzuzeigen.
761
762 Divisiones können benutzt werden, indem die Datei @file{gregorian@/-init@/.ly}
763 in die Quelldatei eingefügt wird. Hier sind die entsprechenden Definitionen
764 schon abgelegt, so dass es genügt, die Befehle @code{\divisioMinima},
765 @code{\divisioMaior}, @code{\divisioMaxima} und @code{\finalis} an den
766 entsprechenden Stellen zu schreiben. Einige Editionen verwenden eine
767 @emph{virgula} oder @emph{caesura} anstelle der divisio minima. Darum findet
768 sich in der Datei @file{gregorian@/-init@/.ly} auch eine Definition für
769 @code{\virgula} und @code{\caesura}.
770
771 @lilypondfile[quote,ragged-right]{divisiones.ly}
772
773 @predefined
774
775 @funindex \virgula
776 @code{\virgula},
777 @funindex \caesura
778 @code{\caesura},
779 @funindex \divisioMinima
780 @code{\divisioMinima},
781 @funindex \divisioMaior
782 @code{\divisioMaior},
783 @funindex \divisioMaxima
784 @code{\divisioMaxima},
785 @funindex \finalis
786 @code{\finalis}.
787
788 @seealso
789
790 In diesem Handbuch:
791 @ref{Breath marks}.
792
793 Programmreferenz:
794 @rinternals{BreathingSign}.
795
796 Beispiele:
797 @rlsr{Winds}.
798
799
800 @node Ligatures
801 @unnumberedsubsubsec Ligatures
802 @cindex Ligaturen
803
804 @c TODO: Should double check if I recalled things correctly when I wrote
805 @c down the following paragraph by heart.
806
807 Eine Ligatur ist ein graphisches Symbol das wenigstens zwei unterschiedliche
808 Noten darstellt. Ligaturen treten ursprünglich in Manuskripten des
809 Gregorianischen Chorals auf, um auf- oder absteigende Notensequenzen zu
810 notieren.
811
812 Ligaturen werden eingegeben, indem die dazugehörigen Noten zwischen
813 @code{\[} und @code{\]} eingeschlossen werden. Einige Ligaturstile benötigen
814 zusätzliche Syntax für eine bestimmte Ligatur. In der Standardeinstellung
815 setzt der @rinternals{LigatureBracket} ganz einfach eckige Klammern über
816 die Noten der Ligatur.
817
818 @lilypond[quote,ragged-right,verbatim]
819 \transpose c c' {
820   \[ g c a f d' \]
821   a g f
822   \[ e f a g \]
823 }
824 @end lilypond
825
826 Um einen gestimmten Ligaturstil auszuwählen, muss ein entsprechender
827 Ligatur-Engraver zum Stimmkontext hinzugefügt werden, wie in den folgenden
828 Abschnitten erklärt wird. Nur weiße Mensuralligaturen sind unterstützt -- mit
829 Einschränkungen.
830
831 @knownissues
832
833 Ligaturen benötigen von klassischer Notation unterschiedliche Platzaufteilung,
834 was sie aber noch nicht können. Darum ist fast immer zu viel Platz zwischen
835 Ligaturen und Zeilenumbrüche sind ungenügend. Text lässt sich auch nicht
836 richtig an Ligaturen ausrichten.
837
838 Akzidentien dürfen nicht innerhalb von einer Ligatur gedruckt werden, sondern
839 müssen gesammelt und vor der Ligatur ausgegeben werden.
840
841 Die Syntax verwendet immer noch den verworfenen Infix-Stil (@code{\[
842 musik. Ausdr. \]}). Für die Konsistenz soll dies geändert werden in den
843 Postfix-Stil (@code{Note\[ ... Note\]}). Alternativ kann die Datei
844 @file{gregorian@/-init@/.ly} eingefügt werden, die eine Scheme-Funktion
845 @example
846 \ligature @var{musik. Ausdr.}
847 @end example
848 mit der selben Wirkung zur Verfügung stellt und stabil zu sein scheint.
849
850
851 @node White mensural ligatures
852 @unnumberedsubsubsec White mensural ligatures
853
854 @cindex Mensuralligaturen
855 @cindex Weiße Mensuralligaturen
856 @cindex Ligaturen, weiße Mensuralnotation
857
858 Begrenzte Unterstützung für Ligaturen der weißen Mensuralnotation.
859
860 Um weiße Mensuralligaturen zu benutzen, muss innerhalb des Layout-Blocks
861 im @rinternals{Voice}-Kontext der @rinternals{Mensural_ligature_engraver}
862 aktiviert werden und gleichzeitig der
863 @rinternals{Ligature_bracket_engraver} (der die Klammern über den Noten
864 setzt) entfernt werden, wie im Beispiel.
865
866 @example
867 \layout @{
868   \context @{
869     \Voice
870     \remove Ligature_bracket_engraver
871     \consists Mensural_ligature_engraver
872   @}
873 @}
874 @end example
875
876 Zusätzlich zu diesen Einstellungen gibt es keine eigenen Befehle, die die
877 Form einer Ligatur bestimmen. Die Form wird vielmehr aus Tonhöhen und
878 Tondauern der in Klammern gesetzten Noten geschlossen. Diese
879 Herangehensweise erfordert einige Eingewöhnung, hat aber den großen
880 Vorteil, dass der musikalische Inhalt der Ligatur dem Programm bekannt ist.
881 Das ist nicht nur notwendig für korrekte MIDI-Ausgabe, sondern erlaubt
882 es auch, automatische Transkriptionen von Ligaturen anzufertigen.
883
884 Eine Datei kann zum Beispiel so aussehen:
885
886 @example
887 \set Score.timing = ##f
888 \set Score.defaultBarType = "empty"
889 \override NoteHead #'style = #'neomensural
890 \override Staff.TimeSignature #'style = #'neomensural
891 \clef "petrucci-g"
892 \[ c'\maxima g \]
893 \[ d\longa c\breve f e d \]
894 \[ c'\maxima d'\longa \]
895 \[ e'1 a g\breve \]
896 @end example
897 @lilypond[quote,ragged-right]
898 \score {
899   \transpose c c' {
900     \set Score.timing = ##f
901     \set Score.defaultBarType = "empty"
902     \override NoteHead #'style = #'neomensural
903     \override Staff.TimeSignature #'style = #'neomensural
904     \clef "petrucci-g"
905     \[ c'\maxima g \]
906     \[ d\longa c\breve f e d \]
907     \[ c'\maxima d'\longa \]
908     \[ e'1 a g\breve \]
909   }
910   \layout {
911     \context {
912       \Voice
913       \remove Ligature_bracket_engraver
914       \consists Mensural_ligature_engraver
915     }
916   }
917 }
918 @end lilypond
919
920 Wenn der @rinternals{Ligature_bracket_engraver} nicht durch den
921 @rinternals{Mensural_ligature_engraver} ersetzt wird, werden die Noten
922 wie folgt ausgegeben:
923
924 @lilypond[quote,ragged-right]
925 \transpose c c' {
926   \set Score.timing = ##f
927   \set Score.defaultBarType = "empty"
928   \override NoteHead #'style = #'neomensural
929   \override Staff.TimeSignature #'style = #'neomensural
930   \clef "petrucci-g"
931   \[ c'\maxima g \]
932   \[ d\longa c\breve f e d \]
933   \[ c'\maxima d'\longa \]
934   \[ e'1 a g\breve \]
935 }
936 @end lilypond
937
938 @knownissues
939
940 Die horizontale Positionierung ist sehr schlecht.
941
942
943 @node Gregorian square neumes ligatures
944 @unnumberedsubsubsec Gregorian square neumes ligatures
945
946 @cindex Quadratische Neumenligaturen
947 @cindex Gregorianische quadratische Neumenligaturen
948 @cindex Ligaturen der quadratischen Neumennotation
949
950 Beschränkte Unterstützung für gregorianische Quadratneumen-Ligaturen
951 (nach dem Stil der Editio Vaticana) ist vorhanden. Die wichtigsten
952 Ligaturen können schon gesetzt werden, aber wichtige Eigenschaften
953 anspruchsvoller Typographie wie horizontale Ausrichtung von mehreren
954 Ligaturen, korrekte Silbenpositionierung und richtiger Umgang mit
955 Versetzungszeichen fehlen noch.
956
957 Die folgende Tabelle enthält die erweiterte Neumenliste des zweiten Bands des
958  Antiphonale Romanum (@emph{Liber Hymnarius}),
959 1983 von den Mönchen von Solesmes herausgegeben.
960
961 @multitable @columnfractions .4 .2 .2 .2
962
963 @item
964 @b{Neuma aut@*
965 Neumarum Elementa}
966 @tab
967 @b{Figurae@*
968 Rectae}
969 @tab
970 @b{Figurae@*
971 Liquescentes@*
972 Auctae}
973 @tab
974 @b{Figurae@*
975 Liquescentes@*
976 Deminutae}
977
978 @c TODO: \layout block is identical in all of the below examples.
979 @c Therefore, it should somehow be included rather than duplicated all
980 @c the time. --jr
981
982 @c why not make identifiers in ly/engraver-init.ly? --hwn
983
984 @c Because it's just used to typeset plain notes without
985 @c a staff for demonstration purposes rather than something
986 @c special of Gregorian chant notation. --jr
987
988 @item
989 @code{1. Punctum}
990 @tab
991 @lilypond[staffsize=26,line-width=1.5\cm]
992 \include "gregorian.ly"
993 \score {
994   \transpose c c' {
995     % Punctum
996     \[ b \]
997     \noBreak s^\markup {"a"} \noBreak
998
999     % Punctum Inclinatum
1000     \[ \inclinatum b \]
1001     \noBreak s^\markup {"b"}
1002   }
1003 \layout { \neumeDemoLayout }}
1004 @end lilypond
1005 @tab
1006 @lilypond[staffsize=26,line-width=2.5\cm]
1007 \include "gregorian.ly"
1008 \score {
1009   \transpose c c' {
1010     % Punctum Auctum Ascendens
1011     \[ \auctum \ascendens b \]
1012     \noBreak s^\markup {"c"} \noBreak
1013
1014     % Punctum Auctum Descendens
1015     \[ \auctum \descendens b \]
1016     \noBreak s^\markup {"d"} \noBreak
1017
1018     % Punctum Inclinatum Auctum
1019     \[ \inclinatum \auctum b \]
1020     \noBreak s^\markup {"e"}
1021   }
1022 \layout { \neumeDemoLayout }}
1023 @end lilypond
1024 @tab
1025 @lilypond[staffsize=26,line-width=1.0\cm]
1026 \include "gregorian.ly"
1027 \score {
1028   \transpose c c' {
1029     % Punctum Inclinatum Parvum
1030     \[ \inclinatum \deminutum b \]
1031     \noBreak s^\markup {"f"}
1032   }
1033 \layout { \neumeDemoLayout }}
1034 @end lilypond
1035
1036 @item
1037 @code{2. Virga}
1038 @tab
1039 @lilypond[staffsize=26,line-width=1.0\cm]
1040 \include "gregorian.ly"
1041 \score {
1042   \transpose c c' {
1043     % Virga
1044     \[ \virga b \]
1045     \noBreak s^\markup {"g"}
1046   }
1047 \layout { \neumeDemoLayout }}
1048 @end lilypond
1049 @tab
1050 @tab
1051
1052 @item
1053 @code{3. Apostropha vel Stropha}
1054 @tab
1055 @lilypond[staffsize=26,line-width=1.0\cm]
1056 \include "gregorian.ly"
1057 \score {
1058   \transpose c c' {
1059     % Stropha
1060     \[ \stropha b \]
1061     \noBreak s^\markup {"h"}
1062   }
1063 \layout { \neumeDemoLayout }}
1064 @end lilypond
1065 @tab
1066 @lilypond[staffsize=26,line-width=1.0\cm]
1067 \include "gregorian.ly"
1068 \score {
1069   \transpose c c' {
1070     % Stropha Aucta
1071     \[ \stropha \auctum b \]
1072     \noBreak s^\markup {"i"}
1073   }
1074 \layout { \neumeDemoLayout }}
1075 @end lilypond
1076 @tab
1077
1078 @item
1079 @code{4. Oriscus}
1080 @tab
1081 @lilypond[staffsize=26,line-width=1.0\cm]
1082 \include "gregorian.ly"
1083 \score {
1084   \transpose c c' {
1085     % Oriscus
1086     \[ \oriscus b \]
1087     \noBreak s^\markup {"j"}
1088   }
1089 \layout { \neumeDemoLayout }}
1090 @end lilypond
1091 @tab
1092 @tab
1093
1094 @item
1095 @code{5. Clivis vel Flexa}
1096 @tab
1097 @lilypond[staffsize=26,line-width=1.0\cm]
1098 \include "gregorian.ly"
1099 \score {
1100   \transpose c c' {
1101     % Clivis vel Flexa
1102     \[ b \flexa g \]
1103     s^\markup {"k"}
1104   }
1105 \layout { \neumeDemoLayout }}
1106 @end lilypond
1107 @tab
1108 @lilypond[staffsize=26,line-width=2.0\cm]
1109 \include "gregorian.ly"
1110 \score {
1111   \transpose c c' {
1112     % Clivis Aucta Descendens
1113     \[ b \flexa \auctum \descendens g \]
1114     \noBreak s^\markup {"l"} \noBreak
1115
1116     % Clivis Aucta Ascendens
1117     \[ b \flexa \auctum \ascendens g \]
1118     \noBreak s^\markup {"m"}
1119   }
1120 \layout { \neumeDemoLayout }}
1121 @end lilypond
1122 @tab
1123 @lilypond[staffsize=26,line-width=1.0\cm]
1124 \include "gregorian.ly"
1125 \score {
1126   \transpose c c' {
1127     % Cephalicus
1128     \[ b \flexa \deminutum g \]
1129     s^\markup {"n"}
1130   }
1131 \layout { \neumeDemoLayout }}
1132 @end lilypond
1133
1134 @item
1135 @code{6. Podatus vel Pes}
1136 @tab
1137 @lilypond[staffsize=26,line-width=1.0\cm]
1138 \include "gregorian.ly"
1139 \score {
1140   \transpose c c' {
1141     % Podatus vel Pes
1142     \[ g \pes b \]
1143     s^\markup {"o"}
1144   }
1145 \layout { \neumeDemoLayout }}
1146 @end lilypond
1147 @tab
1148 @lilypond[staffsize=26,line-width=2.0\cm]
1149 \include "gregorian.ly"
1150 \score {
1151   \transpose c c' {
1152     % Pes Auctus Descendens
1153     \[ g \pes \auctum \descendens b \]
1154     \noBreak s^\markup {"p"} \noBreak
1155
1156     % Pes Auctus Ascendens
1157     \[ g \pes \auctum \ascendens b \]
1158     \noBreak s^\markup {"q"}
1159   }
1160 \layout { \neumeDemoLayout }}
1161 @end lilypond
1162 @tab
1163 @lilypond[staffsize=26,line-width=1.0\cm]
1164 \include "gregorian.ly"
1165 \score {
1166   \transpose c c' {
1167     % Epiphonus
1168     \[ g \pes \deminutum b \]
1169     s^\markup {"r"}
1170   }
1171 \layout { \neumeDemoLayout }}
1172 @end lilypond
1173
1174 @item
1175 @code{7. Pes Quassus}
1176 @tab
1177 @lilypond[staffsize=26,line-width=1.0\cm]
1178 \include "gregorian.ly"
1179 \score {
1180   \transpose c c' {
1181     % Pes Quassus
1182     \[ \oriscus g \pes \virga b \]
1183     s^\markup {"s"}
1184   }
1185 \layout { \neumeDemoLayout }}
1186 @end lilypond
1187 @tab
1188 @lilypond[staffsize=26,line-width=1.0\cm]
1189 \include "gregorian.ly"
1190 \score {
1191   \transpose c c' {
1192     % Pes Quassus Auctus Descendens
1193     \[ \oriscus g \pes \auctum \descendens b \]
1194     s^\markup {"t"}
1195   }
1196 \layout { \neumeDemoLayout }}
1197 @end lilypond
1198 @tab
1199
1200 @item
1201 @code{8. Quilisma Pes}
1202 @tab
1203 @lilypond[staffsize=26,line-width=1.0\cm]
1204 \include "gregorian.ly"
1205 \score {
1206   \transpose c c' {
1207     % Quilisma Pes
1208     \[ \quilisma g \pes b \]
1209     s^\markup {"u"}
1210   }
1211 \layout { \neumeDemoLayout }}
1212 @end lilypond
1213 @tab
1214 @lilypond[staffsize=26,line-width=1.0\cm]
1215 \include "gregorian.ly"
1216 \score {
1217   \transpose c c' {
1218     % Quilisma Pes Auctus Descendens
1219     \[ \quilisma g \pes \auctum \descendens b \]
1220     s^\markup {"v"}
1221   }
1222 \layout { \neumeDemoLayout }}
1223 @end lilypond
1224 @tab
1225
1226 @item
1227 @code{9. Podatus Initio Debilis}
1228 @tab
1229 @lilypond[staffsize=26,line-width=1.0\cm]
1230 \include "gregorian.ly"
1231 \score {
1232   \transpose c c' {
1233     % Pes Initio Debilis
1234     \[ \deminutum g \pes b \]
1235     s^\markup {"w"}
1236   }
1237 \layout { \neumeDemoLayout }}
1238 @end lilypond
1239 @tab
1240 @lilypond[staffsize=26,line-width=1.0\cm]
1241 \include "gregorian.ly"
1242 \score {
1243   \transpose c c' {
1244     % Pes Auctus Descendens Initio Debilis
1245     \[ \deminutum g \pes \auctum \descendens b \]
1246     s^\markup {"x"}
1247   }
1248 \layout { \neumeDemoLayout }}
1249 @end lilypond
1250 @tab
1251
1252 @item
1253 @code{10. Torculus}
1254 @tab
1255 @lilypond[staffsize=26,line-width=1.0\cm]
1256 \include "gregorian.ly"
1257 \score {
1258   \transpose c c' {
1259     % Torculus
1260     \[ a \pes b \flexa g \]
1261     s^\markup {"y"}
1262   }
1263 \layout { \neumeDemoLayout }}
1264 @end lilypond
1265 @tab
1266 @lilypond[staffsize=26,line-width=1.0\cm]
1267 \include "gregorian.ly"
1268 \score {
1269   \transpose c c' {
1270     % Torculus Auctus Descendens
1271     \[ a \pes b \flexa \auctum \descendens g \]
1272     s^\markup {"z"}
1273   }
1274 \layout { \neumeDemoLayout }}
1275 @end lilypond
1276 @tab
1277 @lilypond[staffsize=26,line-width=1.0\cm]
1278 \include "gregorian.ly"
1279 \score {
1280   \transpose c c' {
1281     % Torculus Deminutus
1282     \[ a \pes b \flexa \deminutum g \]
1283     s^\markup {"A"}
1284   }
1285 \layout { \neumeDemoLayout }}
1286 @end lilypond
1287
1288 @item
1289 @code{11. Torculus Initio Debilis}
1290 @tab
1291 @lilypond[staffsize=26,line-width=1.0\cm]
1292 \include "gregorian.ly"
1293 \score {
1294   \transpose c c' {
1295     % Torculus Initio Debilis
1296     \[ \deminutum a \pes b \flexa g \]
1297     s^\markup {"B"}
1298   }
1299 \layout { \neumeDemoLayout }}
1300 @end lilypond
1301 @tab
1302 @lilypond[staffsize=26,line-width=1.0\cm]
1303 \include "gregorian.ly"
1304 \score {
1305   \transpose c c' {
1306     % Torculus Auctus Descendens Initio Debilis
1307     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
1308     s^\markup {"C"}
1309   }
1310 \layout { \neumeDemoLayout }}
1311 @end lilypond
1312 @tab
1313 @lilypond[staffsize=26,line-width=1.0\cm]
1314 \include "gregorian.ly"
1315 \score {
1316   \transpose c c' {
1317     % Torculus Deminutus Initio Debilis
1318     \[ \deminutum a \pes b \flexa \deminutum g \]
1319     s^\markup {"D"}
1320   }
1321 \layout { \neumeDemoLayout }}
1322 @end lilypond
1323
1324 @item
1325 @code{12. Porrectus}
1326 @tab
1327 @lilypond[staffsize=26,line-width=1.0\cm]
1328 \include "gregorian.ly"
1329 \score {
1330   \transpose c c' {
1331     % Porrectus
1332     \[ a \flexa g \pes b \]
1333     s^\markup {"E"}
1334   }
1335 \layout { \neumeDemoLayout }}
1336 @end lilypond
1337 @tab
1338 @lilypond[staffsize=26,line-width=1.0\cm]
1339 \include "gregorian.ly"
1340 \score {
1341   \transpose c c' {
1342     % Porrectus Auctus Descendens
1343     \[ a \flexa g \pes \auctum \descendens b \]
1344     s^\markup {"F"}
1345   }
1346 \layout { \neumeDemoLayout }}
1347 @end lilypond
1348 @tab
1349 @lilypond[staffsize=26,line-width=1.0\cm]
1350 \include "gregorian.ly"
1351 \score {
1352   \transpose c c' {
1353     % Porrectus Deminutus
1354     \[ a \flexa g \pes \deminutum b \]
1355     s^\markup {"G"}
1356   }
1357 \layout { \neumeDemoLayout }}
1358 @end lilypond
1359
1360 @item
1361 @code{13. Climacus}
1362 @tab
1363 @lilypond[staffsize=26,line-width=1.0\cm]
1364 \include "gregorian.ly"
1365 \score {
1366   \transpose c c' {
1367     % Climacus
1368     \[ \virga b \inclinatum a \inclinatum g \]
1369     s^\markup {"H"}
1370   }
1371   \layout { \neumeDemoLayout }
1372 }
1373 @end lilypond
1374 @tab
1375 @lilypond[staffsize=26,line-width=1.0\cm]
1376 \include "gregorian.ly"
1377 \score {
1378   \transpose c c' {
1379     % Climacus Auctus
1380     \[ \virga b \inclinatum a \inclinatum \auctum g \]
1381     s^\markup {"I"}
1382   }
1383 \layout { \neumeDemoLayout }}
1384 @end lilypond
1385 @tab
1386 @lilypond[staffsize=26,line-width=1.0\cm]
1387 \include "gregorian.ly"
1388 \score {
1389   \transpose c c' {
1390     % Climacus Deminutus
1391     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
1392     s^\markup {"J"}
1393   }
1394 \layout { \neumeDemoLayout }}
1395 @end lilypond
1396
1397 @item
1398 @code{14. Scandicus}
1399 @tab
1400 @lilypond[staffsize=26,line-width=1.0\cm]
1401 \include "gregorian.ly"
1402 \score {
1403   \transpose c c' {
1404     % Scandicus
1405     \[ g \pes a \virga b \]
1406     s^\markup {"K"}
1407   }
1408 \layout { \neumeDemoLayout }}
1409 @end lilypond
1410 @tab
1411 @lilypond[staffsize=26,line-width=1.0\cm]
1412 \include "gregorian.ly"
1413 \score {
1414   \transpose c c' {
1415     % Scandicus Auctus Descendens
1416     \[ g \pes a \pes \auctum \descendens b \]
1417     s^\markup {"L"}
1418   }
1419 \layout { \neumeDemoLayout }}
1420 @end lilypond
1421 @tab
1422 @lilypond[staffsize=26,line-width=1.0\cm]
1423 \include "gregorian.ly"
1424 \score {
1425   \transpose c c' {
1426     % Scandicus Deminutus
1427     \[ g \pes a \pes \deminutum b \]
1428     s^\markup {"M"}
1429   }
1430 \layout { \neumeDemoLayout }}
1431 @end lilypond
1432
1433 @item
1434 @code{15. Salicus}
1435 @tab
1436 @lilypond[staffsize=26,line-width=1.0\cm]
1437 \include "gregorian.ly"
1438 \score {
1439   \transpose c c' {
1440     % Salicus
1441     \[ g \oriscus a \pes \virga b \]
1442     s^\markup {"N"}
1443   }
1444 \layout { \neumeDemoLayout }}
1445 @end lilypond
1446 @tab
1447 @lilypond[staffsize=26,line-width=1.0\cm]
1448 \include "gregorian.ly"
1449 \score {
1450   \transpose c c' {
1451     % Salicus Auctus Descendens
1452     \[ g \oriscus a \pes \auctum \descendens b \]
1453     s^\markup {"O"}
1454   }
1455 \layout { \neumeDemoLayout }}
1456 @end lilypond
1457 @tab
1458
1459 @item
1460 @code{16. Trigonus}
1461 @tab
1462 @lilypond[staffsize=26,line-width=1.0\cm]
1463 \include "gregorian.ly"
1464 \score {
1465   \transpose c c' {
1466     % Trigonus
1467     \[ \stropha b \stropha b \stropha a \]
1468     s^\markup {"P"}
1469   }
1470   \layout { \neumeDemoLayout }
1471 }
1472 @end lilypond
1473 @tab
1474 @tab
1475
1476 @end multitable
1477
1478 Anders als in den meisten Neumennotationssystemen zeigt der Quellcode
1479 von LilyPond nicht das typographische Aussehen der Ligatur an, sondern
1480 deren musikalischen Inhalt. Der Code  @code{\[ a \pes b
1481 \flexa g \]} etwa ergibt einen Torculus, der aus drei Punctum-Köpfen besteht,
1482 während @code{\[ a \flexa g \pes b \]} einen Porrectus mit einer gekrümmten
1483 Flexa und einem einzelnen Punctum ausgibt.
1484 Es gibt also keinen Befehl, der explizit eine gekrümmte Flexa setzen würde;
1485 die Entscheidung, wann diese gesetzt werden soll hängt vielmehr davon ab,
1486 welcher musikalische Inhalt dargestellt werden soll. Der Sinn dieser
1487 Herangehensweise ist es, den Inhalt von der graphischen Repräsentation zu
1488 trennen. Auf diese Art kann mit der gleichen Eingabe ein anderer gregorianischer
1489 Stil gesetzt werden, ohne die Notation zu verändern.
1490
1491 Die folgende Tabelle zeigt Code-Fragmente, mit denen die Ligaturen der vorigen
1492 Tabelle erstellt werden können. Der Buchstabe in der ersten Spalte jeder Zeile
1493 der unteren Tabelle zeigt an, auf welche Ligatur in der vorigen Tabelle sie sich
1494 bezieht. In der zweiten Spalte erscheint die Bezeichnung der Ligatur. Die dritte
1495 Spalte enthält das Fragment, mit dem die Ligatur erzeugt wurde, wobei
1496 @code{g}, @code{a} und @code{b} als Beispieltonhöhen eingesetzt werden.
1497
1498 @multitable @columnfractions .02 .31 .67
1499 @item
1500 @b{#}
1501 @tab
1502 @b{Name}
1503 @tab
1504 @b{Input Language}
1505
1506 @item
1507 a
1508 @tab
1509 Punctum
1510 @tab
1511 @code{\[ b \]}
1512
1513 @item
1514 b
1515 @tab
1516 Punctum Inclinatum
1517 @tab
1518 @code{\[ \inclinatum b \]}
1519
1520 @item
1521 c
1522 @tab
1523 Punctum Auctum@*
1524 Ascendens
1525 @tab
1526 @code{\[ \auctum \ascendens b \]}
1527
1528 @item
1529 d
1530 @tab
1531 Punctum Auctum@*
1532 Descendens
1533 @tab
1534 @code{\[ \auctum \descendens b \]}
1535
1536 @item
1537 e
1538 @tab
1539 Punctum Inclinatum@*
1540 Auctum
1541 @tab
1542 @code{\[ \inclinatum \auctum b \]}
1543
1544 @item
1545 f
1546 @tab
1547 Punctum Inclinatum@*
1548 Parvum @tab
1549 @code{\[ \inclinatum \deminutum b \]}
1550
1551 @item
1552 g
1553 @tab
1554 Virga
1555 @tab
1556 @code{\[ \virga b \]}
1557
1558 @item
1559 h
1560 @tab
1561 Stropha
1562 @tab
1563 @code{\[ \stropha b \]}
1564
1565 @item
1566 i
1567 @tab
1568 Stropha Aucta
1569 @tab
1570 @code{\[ \stropha \auctum b \]}
1571
1572 @item
1573 j
1574 @tab
1575 Oriscus
1576 @tab
1577 @code{\[ \oriscus b \]}
1578
1579 @item
1580 k
1581 @tab
1582 Clivis vel Flexa
1583 @tab
1584 @code{\[ b \flexa g \]}
1585
1586 @item
1587 l
1588 @tab
1589 Clivis Aucta@*
1590 Descendens
1591 @tab
1592 @code{\[ b \flexa \auctum \descendens g \]}
1593
1594 @item
1595 m
1596 @tab
1597 Clivis Aucta@*
1598 Ascendens
1599 @tab
1600 @code{\[ b \flexa \auctum \ascendens g \]}
1601
1602 @item
1603 n
1604 @tab
1605 Cephalicus
1606 @tab
1607 @code{\[ b \flexa \deminutum g \]}
1608
1609 @item
1610 o
1611 @tab
1612 Podatus vel Pes
1613 @tab
1614 @code{\[ g \pes b \]}
1615
1616 @item
1617 p
1618 @tab
1619 Pes Auctus@*
1620 Descendens
1621 @tab
1622 @code{\[ g \pes \auctum \descendens b \]}
1623
1624 @item
1625 q
1626 @tab
1627 Pes Auctus@*
1628 Ascendens
1629 @tab
1630 @code{\[ g \pes \auctum \ascendens b \]}
1631
1632 @item
1633 r
1634 @tab
1635 Epiphonus
1636 @tab
1637 @code{\[ g \pes \deminutum b \]}
1638
1639 @item
1640 s
1641 @tab
1642 Pes Quassus
1643 @tab
1644 @code{\[ \oriscus g \pes \virga b \]}
1645
1646 @item
1647 t
1648 @tab
1649 Pes Quassus@*
1650 Auctus Descendens @tab
1651 @code{\[ \oriscus g \pes \auctum \descendens b \]}
1652
1653 @item
1654 u
1655 @tab
1656 Quilisma Pes
1657 @tab
1658 @code{\[ \quilisma g \pes b \]}
1659
1660 @item
1661 v
1662 @tab
1663 Quilisma Pes@*
1664 Auctus Descendens
1665 @tab
1666 @code{\[ \quilisma g \pes \auctum \descendens b \]}
1667
1668 @item
1669 w
1670 @tab
1671 Pes Initio Debilis
1672 @tab
1673 @code{\[ \deminutum g \pes b \]}
1674
1675 @item
1676 x
1677 @tab
1678 Pes Auctus Descendens@*
1679 Initio Debilis
1680 @tab
1681 @code{\[ \deminutum g \pes \auctum \descendens b \]}
1682
1683 @item
1684 y
1685 @tab
1686 Torculus
1687 @tab
1688 @code{\[ a \pes b \flexa g \]}
1689
1690 @item
1691 z
1692 @tab
1693 Torculus Auctus@*
1694 Descendens
1695 @tab
1696 @code{\[ a \pes b \flexa \auctum \descendens g \]}
1697
1698 @item
1699 A
1700 @tab
1701 Torculus Deminutus
1702 @tab
1703 @code{\[ a \pes b \flexa \deminutum g \]}
1704
1705 @item
1706 B
1707 @tab
1708 Torculus Initio Debilis
1709 @tab
1710 @code{\[ \deminutum a \pes b \flexa g \]}
1711
1712 @item
1713 C
1714 @tab
1715 Torculus Auctus@*
1716 Descendens Initio Debilis
1717 @tab
1718 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
1719
1720 @item
1721 D
1722 @tab
1723 Torculus Deminutus@*
1724 Initio Debilis
1725 @tab
1726 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
1727
1728 @item
1729 E
1730 @tab
1731 Porrectus
1732 @tab
1733 @code{\[ a \flexa g \pes b \]}
1734
1735 @item
1736 F
1737 @tab
1738 Porrectus Auctus@*
1739 Descendens
1740 @tab
1741 @code{\[ a \flexa g \pes \auctum \descendens b \]}
1742
1743 @item
1744 G
1745 @tab
1746 Porrectus Deminutus
1747 @tab
1748 @code{\[ a \flexa g \pes \deminutum b \]}
1749
1750 @item
1751 H
1752 @tab
1753 Climacus
1754 @tab
1755 @code{\[ \virga b \inclinatum a \inclinatum g \]}
1756
1757 @item
1758 I
1759 @tab
1760 Climacus Auctus
1761 @tab
1762 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
1763
1764 @item
1765 J
1766 @tab
1767 Climacus Deminutus
1768 @tab
1769 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
1770
1771 @item
1772 K
1773 @tab
1774 Scandicus
1775 @tab
1776 @code{\[ g \pes a \virga b \]}
1777
1778 @item
1779 L
1780 @tab
1781 Scandicus Auctus@*
1782 Descendens
1783 @tab
1784 @code{\[ g \pes a \pes \auctum \descendens b \]}
1785
1786 @item
1787 M
1788 @tab
1789 Scandicus Deminutus
1790 @tab
1791 @code{\[ g \pes a \pes \deminutum b \]}
1792
1793 @item
1794 N
1795 @tab
1796 Salicus
1797 @tab
1798 @code{\[ g \oriscus a \pes \virga b \]}
1799
1800 @item
1801 O
1802 @tab
1803 Salicus Auctus Descendens
1804 @tab
1805 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
1806
1807 @item
1808 P
1809 @tab
1810 Trigonus
1811 @tab
1812 @code{\[ \stropha b \stropha b \stropha a \]}
1813 @end multitable
1814
1815 Die Ligaturen dieser Liste dienen als begrenzter, aber doch
1816 repräsentativer Vorrat an Ligaturbeispielen des Gregorianischen
1817 Chorals. Innerhalb der Ligaturbegrenzungen  @code{\[} und
1818 @code{\]}  kann jedoch problemlos jede nur mögliche Anzahl an
1819 Noten gesetzt werden, und Präfixe wie
1820 @code{\pes}, @code{\flexa}, @code{\virga}, @code{\inclinatum},
1821 usw können nach Belieben gemischt werden. Die Regeln,
1822 die der Konstruktion der Ligaturen in den Tabellen zugrunde liegen,
1823 werden entsprechend angepasst. Auf diese Weise können unendlich
1824 viele Ligaturen gesetzt werden.
1825
1826 Augmentum-Punkte, auch @emph{morae} genannt, werden mit dem
1827 Befehl @code{\augmentum} hinzugefügt. @code{\augmentum} ist allerdings
1828 als eigene musikalische Funktion gebaut und nicht als ein Notenpräfix.
1829 Insofern hat der Befehl in diesem Kontext:
1830 @code{\augmentum \virga c} keine sichtbaren Auswirkungen. Erst mit
1831 @code{\virga \augmentum c} oder @code{\augmentum @{\virga c@}}
1832 funktionieren beide Befehle. Es ist auch möglich, mit
1833 @code{\augmentum @{a g@}} die Schreibweise
1834 @code{\augmentum a \augmentum g} abzukürzen.
1835
1836 @lilypond[quote,ragged-right,verbatim]
1837 \include "gregorian.ly"
1838 \score {
1839   \new VaticanaVoice {
1840     \[ \augmentum a \flexa \augmentum g \]
1841     \augmentum g
1842   }
1843 }
1844 @end lilypond
1845
1846 @predefined
1847
1848 Folgende Notenpräfixe sind unterstützt:
1849
1850 @funindex \virga
1851 @code{\virga},
1852 @funindex \stropha
1853 @code{\stropha},
1854 @funindex \inclinatum
1855 @code{\inclinatum},
1856 @funindex \auctum
1857 @code{\auctum},
1858 @funindex \descendens
1859 @code{\descendens},
1860 @funindex \ascendens
1861 @code{\ascendens},
1862 @funindex \oriscus
1863 @code{\oriscus},
1864 @funindex \quilisma
1865 @code{\quilisma},
1866 @funindex \deminutum
1867 @code{\deminutum},
1868 @funindex \cavum
1869 @code{\cavum},
1870 @funindex \linea
1871 @code{\linea}.
1872
1873 Präfixe können kombiniert werden, wenn es hier auch Begrenzungen
1874 gibt. Zum Beispiel können die Präfixe @code{\descendens} oder
1875 @code{\ascendens} vor einer Note geschrieben werden, aber nicht
1876 beide für die selbe Note
1877 .
1878 @funindex \pes
1879 @funindex \flexa
1880 Zwei benachbarte Noten können mit den @code{\pes} und
1881 @code{\flexa}-Infixen verbunden werden, um eine steigende bwz.
1882 fallende Melodielinie zu notieren.
1883
1884 @funindex \augmentum
1885 Die musikalische Funktion @code{\augmentum} muss benutzt werden, um
1886 augmentum-Punkte hinzuzufügen.
1887
1888 @knownissues
1889
1890 Wenn ein @code{\augmentum}-Punkt am Ende des letzten Systems innerhalb
1891 einer Ligatur gesetzt wird, ist er vertikal etwas falsch positioniert. Als
1892 Abhilfe kann eine unsichtbare Note (z. B. @code{s8}) als letzte Note im
1893 System eingegeben werden.
1894
1895 @code{\augmentum} sollte als Präfix implementiert sein, nicht als eigene
1896 musikalische Funktion, so dass @code{\augmentum} mit den anderen
1897 Präfixen in arbiträrer Reihenfolge notiert werden kann.
1898
1899
1900 @node Pre-defined contexts
1901 @subsection Pre-defined contexts
1902
1903 @untranslated
1904
1905 @menu
1906 * Gregorian chant contexts::
1907 * Mensural contexts::
1908 @end menu
1909
1910
1911 @node Gregorian chant contexts
1912 @unnumberedsubsubsec Gregorian chant contexts
1913
1914 @cindex VaticanaVoiceContext
1915 @cindex VaticanaStaffContext
1916
1917 Die vordefinierten Kontexte @code{VaticanaVoiceContext} (für eine
1918 gregorianische Stimme) und @code{VaticanaStaffContext} (für ein
1919 gregorianisches Notensystem) können eingesetzt werden, um
1920 Gregorianischen Choral im Stil der Editio Vaticana zu setzen. Diese
1921 Kontexte initialisieren alle relevanten Eigenschaften für das Notensystem
1922 und die graphischen Objekte, so dass unmittelbar mit der Notation
1923 begonnen werden kann. Siehe das folgende Beispiel:
1924
1925 @lilypond[quote,ragged-right,packed,verbatim]
1926 \include "gregorian.ly"
1927 \score {
1928   <<
1929     \new VaticanaVoice = "cantus" {
1930       \[ c'\melisma c' \flexa a \]
1931       \[ a \flexa \deminutum g\melismaEnd \]
1932       f \divisioMinima
1933       \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
1934       c' \divisioMinima \break
1935       \[ c'\melisma c' \flexa a \]
1936       \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
1937     }
1938     \new Lyrics \lyricsto "cantus" {
1939       San- ctus, San- ctus, San- ctus
1940     }
1941   >>
1942 }
1943 @end lilypond
1944
1945
1946 @node Mensural contexts
1947 @unnumberedsubsubsec Mensural contexts
1948
1949 @cindex MensuralVoiceContext
1950 @cindex MensuralStaffContext
1951
1952 Die vordefinierten Kontexte @code{MensuralVoiceContext} und
1953 @code{MensuralStaffContext} können eingesetzt werden, um
1954 ein Stück in Mensuralnotations zu schreiben. Die Kontexte
1955 initialisieren alle relevanten Eigenschaften der Kontexte und
1956 graphischen Objekte, so dass unmittelbar mit der Notation begonnen
1957 werden kann. Siehe das folgende Beispiel:
1958
1959 @lilypond[quote,ragged-right,verbatim]
1960 \score {
1961   <<
1962     \new MensuralVoice = "discantus" \transpose c c' {
1963       \override Score.BarNumber #'transparent = ##t {
1964         c'1\melisma bes a g\melismaEnd
1965         f\breve
1966         \[ f1\melisma a c'\breve d'\melismaEnd \]
1967         c'\longa
1968         c'\breve\melisma a1 g1\melismaEnd
1969         fis\longa^\signumcongruentiae
1970       }
1971     }
1972     \new Lyrics \lyricsto "discantus" {
1973       San -- ctus, San -- ctus, San -- ctus
1974     }
1975   >>
1976 }
1977 @end lilypond
1978
1979
1980 @node Transcribing ancient music
1981 @subsection Transcribing ancient music
1982
1983 @untranslated
1984
1985 @menu
1986 * Ancient and modern from one source::
1987 * Incipits::
1988 * Mensurstriche layout::
1989 * Transcribing Gregorian chant::
1990 @end menu
1991
1992
1993 @node Ancient and modern from one source
1994 @unnumberedsubsubsec Ancient and modern from one source
1995
1996 @untranslated
1997
1998
1999 @node Incipits
2000 @unnumberedsubsubsec Incipits
2001
2002 @untranslated
2003
2004
2005 @node Mensurstriche layout
2006 @unnumberedsubsubsec Mensurstriche layout
2007
2008 @untranslated
2009
2010
2011 @node Transcribing Gregorian chant
2012 @unnumberedsubsubsec Transcribing Gregorian chant
2013
2014 @untranslated
2015
2016
2017 @node Editorial markings
2018 @subsection Editorial markings
2019
2020 @untranslated
2021
2022 @menu
2023 * Annotational accidentals::
2024 * Baroque rhythmic notation::
2025 @end menu
2026
2027
2028 @node Annotational accidentals
2029 @unnumberedsubsubsec Annotational accidentals
2030
2031 In der europäischen Musik vor 1600 wurden vom Sänger oftmals
2032 chromatische Alterationen erwartet, die nicht notiert wurden.
2033 Diese Praxis wird @qq{Musica Ficta} genannt. In modernen
2034 Transkripition werden die Versetzungszeichen üblicherweise
2035 oberhalb der Noten gesetzt.
2036
2037 @cindex Versetzungszeichen, musica ficta
2038 @cindex Musica ficta
2039
2040 Unterstützung für solche empfohlenen Versetzungszeichen ist
2041 implementiert und kann aktiviert werden, indem die
2042 Eigenschaft @code{suggestAccidentals} auf wahr gesetzt wird.
2043 Siehe auch das Beispiel.
2044
2045 @funindex suggestAccidentals
2046
2047 @lilypond[verbatim,fragment,relative=1]
2048 fis gis
2049 \set suggestAccidentals = ##t
2050 ais bis
2051 @end lilypond
2052
2053 @seealso
2054
2055 Programmreferenz: @rinternals{Accidental_engraver}-Setzer und das
2056 @rinternals{AccidentalSuggestion}-Objekt.
2057
2058
2059 @node Baroque rhythmic notation
2060 @unnumberedsubsubsec Baroque rhythmic notation
2061
2062 @untranslated
2063