]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/de/user/ancient.itely
Add @endpredefined everywhere.
[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
774 @predefined
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 @endpredefined
788
789
790 @seealso
791
792 In diesem Handbuch:
793 @ref{Breath marks}.
794
795 Programmreferenz:
796 @rinternals{BreathingSign}.
797
798 Beispiele:
799 @rlsr{Winds}.
800
801
802 @node Ligatures
803 @unnumberedsubsubsec Ligatures
804 @cindex Ligaturen
805
806 @c TODO: Should double check if I recalled things correctly when I wrote
807 @c down the following paragraph by heart.
808
809 Eine Ligatur ist ein graphisches Symbol das wenigstens zwei unterschiedliche
810 Noten darstellt. Ligaturen treten ursprünglich in Manuskripten des
811 Gregorianischen Chorals auf, um auf- oder absteigende Notensequenzen zu
812 notieren.
813
814 Ligaturen werden eingegeben, indem die dazugehörigen Noten zwischen
815 @code{\[} und @code{\]} eingeschlossen werden. Einige Ligaturstile benötigen
816 zusätzliche Syntax für eine bestimmte Ligatur. In der Standardeinstellung
817 setzt der @rinternals{LigatureBracket} ganz einfach eckige Klammern über
818 die Noten der Ligatur.
819
820 @lilypond[quote,ragged-right,verbatim]
821 \transpose c c' {
822   \[ g c a f d' \]
823   a g f
824   \[ e f a g \]
825 }
826 @end lilypond
827
828 Um einen gestimmten Ligaturstil auszuwählen, muss ein entsprechender
829 Ligatur-Engraver zum Stimmkontext hinzugefügt werden, wie in den folgenden
830 Abschnitten erklärt wird. Nur weiße Mensuralligaturen sind unterstützt -- mit
831 Einschränkungen.
832
833 @knownissues
834
835 Ligaturen benötigen von klassischer Notation unterschiedliche Platzaufteilung,
836 was sie aber noch nicht können. Darum ist fast immer zu viel Platz zwischen
837 Ligaturen und Zeilenumbrüche sind ungenügend. Text lässt sich auch nicht
838 richtig an Ligaturen ausrichten.
839
840 Akzidentien dürfen nicht innerhalb von einer Ligatur gedruckt werden, sondern
841 müssen gesammelt und vor der Ligatur ausgegeben werden.
842
843 Die Syntax verwendet immer noch den verworfenen Infix-Stil (@code{\[
844 musik. Ausdr. \]}). Für die Konsistenz soll dies geändert werden in den
845 Postfix-Stil (@code{Note\[ ... Note\]}). Alternativ kann die Datei
846 @file{gregorian@/-init@/.ly} eingefügt werden, die eine Scheme-Funktion
847 @example
848 \ligature @var{musik. Ausdr.}
849 @end example
850 mit der selben Wirkung zur Verfügung stellt und stabil zu sein scheint.
851
852
853 @node White mensural ligatures
854 @unnumberedsubsubsec White mensural ligatures
855
856 @cindex Mensuralligaturen
857 @cindex Weiße Mensuralligaturen
858 @cindex Ligaturen, weiße Mensuralnotation
859
860 Begrenzte Unterstützung für Ligaturen der weißen Mensuralnotation.
861
862 Um weiße Mensuralligaturen zu benutzen, muss innerhalb des Layout-Blocks
863 im @rinternals{Voice}-Kontext der @rinternals{Mensural_ligature_engraver}
864 aktiviert werden und gleichzeitig der
865 @rinternals{Ligature_bracket_engraver} (der die Klammern über den Noten
866 setzt) entfernt werden, wie im Beispiel.
867
868 @example
869 \layout @{
870   \context @{
871     \Voice
872     \remove Ligature_bracket_engraver
873     \consists Mensural_ligature_engraver
874   @}
875 @}
876 @end example
877
878 Zusätzlich zu diesen Einstellungen gibt es keine eigenen Befehle, die die
879 Form einer Ligatur bestimmen. Die Form wird vielmehr aus Tonhöhen und
880 Tondauern der in Klammern gesetzten Noten geschlossen. Diese
881 Herangehensweise erfordert einige Eingewöhnung, hat aber den großen
882 Vorteil, dass der musikalische Inhalt der Ligatur dem Programm bekannt ist.
883 Das ist nicht nur notwendig für korrekte MIDI-Ausgabe, sondern erlaubt
884 es auch, automatische Transkriptionen von Ligaturen anzufertigen.
885
886 Eine Datei kann zum Beispiel so aussehen:
887
888 @example
889 \set Score.timing = ##f
890 \set Score.defaultBarType = "empty"
891 \override NoteHead #'style = #'neomensural
892 \override Staff.TimeSignature #'style = #'neomensural
893 \clef "petrucci-g"
894 \[ c'\maxima g \]
895 \[ d\longa c\breve f e d \]
896 \[ c'\maxima d'\longa \]
897 \[ e'1 a g\breve \]
898 @end example
899 @lilypond[quote,ragged-right]
900 \score {
901   \transpose c c' {
902     \set Score.timing = ##f
903     \set Score.defaultBarType = "empty"
904     \override NoteHead #'style = #'neomensural
905     \override Staff.TimeSignature #'style = #'neomensural
906     \clef "petrucci-g"
907     \[ c'\maxima g \]
908     \[ d\longa c\breve f e d \]
909     \[ c'\maxima d'\longa \]
910     \[ e'1 a g\breve \]
911   }
912   \layout {
913     \context {
914       \Voice
915       \remove Ligature_bracket_engraver
916       \consists Mensural_ligature_engraver
917     }
918   }
919 }
920 @end lilypond
921
922 Wenn der @rinternals{Ligature_bracket_engraver} nicht durch den
923 @rinternals{Mensural_ligature_engraver} ersetzt wird, werden die Noten
924 wie folgt ausgegeben:
925
926 @lilypond[quote,ragged-right]
927 \transpose c c' {
928   \set Score.timing = ##f
929   \set Score.defaultBarType = "empty"
930   \override NoteHead #'style = #'neomensural
931   \override Staff.TimeSignature #'style = #'neomensural
932   \clef "petrucci-g"
933   \[ c'\maxima g \]
934   \[ d\longa c\breve f e d \]
935   \[ c'\maxima d'\longa \]
936   \[ e'1 a g\breve \]
937 }
938 @end lilypond
939
940 @knownissues
941
942 Die horizontale Positionierung ist sehr schlecht.
943
944
945 @node Gregorian square neumes ligatures
946 @unnumberedsubsubsec Gregorian square neumes ligatures
947
948 @cindex Quadratische Neumenligaturen
949 @cindex Gregorianische quadratische Neumenligaturen
950 @cindex Ligaturen der quadratischen Neumennotation
951
952 Beschränkte Unterstützung für gregorianische Quadratneumen-Ligaturen
953 (nach dem Stil der Editio Vaticana) ist vorhanden. Die wichtigsten
954 Ligaturen können schon gesetzt werden, aber wichtige Eigenschaften
955 anspruchsvoller Typographie wie horizontale Ausrichtung von mehreren
956 Ligaturen, korrekte Silbenpositionierung und richtiger Umgang mit
957 Versetzungszeichen fehlen noch.
958
959 Die folgende Tabelle enthält die erweiterte Neumenliste des zweiten Bands des
960  Antiphonale Romanum (@emph{Liber Hymnarius}),
961 1983 von den Mönchen von Solesmes herausgegeben.
962
963 @multitable @columnfractions .4 .2 .2 .2
964
965 @item
966 @b{Neuma aut@*
967 Neumarum Elementa}
968 @tab
969 @b{Figurae@*
970 Rectae}
971 @tab
972 @b{Figurae@*
973 Liquescentes@*
974 Auctae}
975 @tab
976 @b{Figurae@*
977 Liquescentes@*
978 Deminutae}
979
980 @c TODO: \layout block is identical in all of the below examples.
981 @c Therefore, it should somehow be included rather than duplicated all
982 @c the time. --jr
983
984 @c why not make identifiers in ly/engraver-init.ly? --hwn
985
986 @c Because it's just used to typeset plain notes without
987 @c a staff for demonstration purposes rather than something
988 @c special of Gregorian chant notation. --jr
989
990 @item
991 @code{1. Punctum}
992 @tab
993 @lilypond[staffsize=26,line-width=1.5\cm]
994 \include "gregorian.ly"
995 \score {
996   \transpose c c' {
997     % Punctum
998     \[ b \]
999     \noBreak s^\markup {"a"} \noBreak
1000
1001     % Punctum Inclinatum
1002     \[ \inclinatum b \]
1003     \noBreak s^\markup {"b"}
1004   }
1005 \layout { \neumeDemoLayout }}
1006 @end lilypond
1007 @tab
1008 @lilypond[staffsize=26,line-width=2.5\cm]
1009 \include "gregorian.ly"
1010 \score {
1011   \transpose c c' {
1012     % Punctum Auctum Ascendens
1013     \[ \auctum \ascendens b \]
1014     \noBreak s^\markup {"c"} \noBreak
1015
1016     % Punctum Auctum Descendens
1017     \[ \auctum \descendens b \]
1018     \noBreak s^\markup {"d"} \noBreak
1019
1020     % Punctum Inclinatum Auctum
1021     \[ \inclinatum \auctum b \]
1022     \noBreak s^\markup {"e"}
1023   }
1024 \layout { \neumeDemoLayout }}
1025 @end lilypond
1026 @tab
1027 @lilypond[staffsize=26,line-width=1.0\cm]
1028 \include "gregorian.ly"
1029 \score {
1030   \transpose c c' {
1031     % Punctum Inclinatum Parvum
1032     \[ \inclinatum \deminutum b \]
1033     \noBreak s^\markup {"f"}
1034   }
1035 \layout { \neumeDemoLayout }}
1036 @end lilypond
1037
1038 @item
1039 @code{2. Virga}
1040 @tab
1041 @lilypond[staffsize=26,line-width=1.0\cm]
1042 \include "gregorian.ly"
1043 \score {
1044   \transpose c c' {
1045     % Virga
1046     \[ \virga b \]
1047     \noBreak s^\markup {"g"}
1048   }
1049 \layout { \neumeDemoLayout }}
1050 @end lilypond
1051 @tab
1052 @tab
1053
1054 @item
1055 @code{3. Apostropha vel Stropha}
1056 @tab
1057 @lilypond[staffsize=26,line-width=1.0\cm]
1058 \include "gregorian.ly"
1059 \score {
1060   \transpose c c' {
1061     % Stropha
1062     \[ \stropha b \]
1063     \noBreak s^\markup {"h"}
1064   }
1065 \layout { \neumeDemoLayout }}
1066 @end lilypond
1067 @tab
1068 @lilypond[staffsize=26,line-width=1.0\cm]
1069 \include "gregorian.ly"
1070 \score {
1071   \transpose c c' {
1072     % Stropha Aucta
1073     \[ \stropha \auctum b \]
1074     \noBreak s^\markup {"i"}
1075   }
1076 \layout { \neumeDemoLayout }}
1077 @end lilypond
1078 @tab
1079
1080 @item
1081 @code{4. Oriscus}
1082 @tab
1083 @lilypond[staffsize=26,line-width=1.0\cm]
1084 \include "gregorian.ly"
1085 \score {
1086   \transpose c c' {
1087     % Oriscus
1088     \[ \oriscus b \]
1089     \noBreak s^\markup {"j"}
1090   }
1091 \layout { \neumeDemoLayout }}
1092 @end lilypond
1093 @tab
1094 @tab
1095
1096 @item
1097 @code{5. Clivis vel Flexa}
1098 @tab
1099 @lilypond[staffsize=26,line-width=1.0\cm]
1100 \include "gregorian.ly"
1101 \score {
1102   \transpose c c' {
1103     % Clivis vel Flexa
1104     \[ b \flexa g \]
1105     s^\markup {"k"}
1106   }
1107 \layout { \neumeDemoLayout }}
1108 @end lilypond
1109 @tab
1110 @lilypond[staffsize=26,line-width=2.0\cm]
1111 \include "gregorian.ly"
1112 \score {
1113   \transpose c c' {
1114     % Clivis Aucta Descendens
1115     \[ b \flexa \auctum \descendens g \]
1116     \noBreak s^\markup {"l"} \noBreak
1117
1118     % Clivis Aucta Ascendens
1119     \[ b \flexa \auctum \ascendens g \]
1120     \noBreak s^\markup {"m"}
1121   }
1122 \layout { \neumeDemoLayout }}
1123 @end lilypond
1124 @tab
1125 @lilypond[staffsize=26,line-width=1.0\cm]
1126 \include "gregorian.ly"
1127 \score {
1128   \transpose c c' {
1129     % Cephalicus
1130     \[ b \flexa \deminutum g \]
1131     s^\markup {"n"}
1132   }
1133 \layout { \neumeDemoLayout }}
1134 @end lilypond
1135
1136 @item
1137 @code{6. Podatus vel Pes}
1138 @tab
1139 @lilypond[staffsize=26,line-width=1.0\cm]
1140 \include "gregorian.ly"
1141 \score {
1142   \transpose c c' {
1143     % Podatus vel Pes
1144     \[ g \pes b \]
1145     s^\markup {"o"}
1146   }
1147 \layout { \neumeDemoLayout }}
1148 @end lilypond
1149 @tab
1150 @lilypond[staffsize=26,line-width=2.0\cm]
1151 \include "gregorian.ly"
1152 \score {
1153   \transpose c c' {
1154     % Pes Auctus Descendens
1155     \[ g \pes \auctum \descendens b \]
1156     \noBreak s^\markup {"p"} \noBreak
1157
1158     % Pes Auctus Ascendens
1159     \[ g \pes \auctum \ascendens b \]
1160     \noBreak s^\markup {"q"}
1161   }
1162 \layout { \neumeDemoLayout }}
1163 @end lilypond
1164 @tab
1165 @lilypond[staffsize=26,line-width=1.0\cm]
1166 \include "gregorian.ly"
1167 \score {
1168   \transpose c c' {
1169     % Epiphonus
1170     \[ g \pes \deminutum b \]
1171     s^\markup {"r"}
1172   }
1173 \layout { \neumeDemoLayout }}
1174 @end lilypond
1175
1176 @item
1177 @code{7. Pes Quassus}
1178 @tab
1179 @lilypond[staffsize=26,line-width=1.0\cm]
1180 \include "gregorian.ly"
1181 \score {
1182   \transpose c c' {
1183     % Pes Quassus
1184     \[ \oriscus g \pes \virga b \]
1185     s^\markup {"s"}
1186   }
1187 \layout { \neumeDemoLayout }}
1188 @end lilypond
1189 @tab
1190 @lilypond[staffsize=26,line-width=1.0\cm]
1191 \include "gregorian.ly"
1192 \score {
1193   \transpose c c' {
1194     % Pes Quassus Auctus Descendens
1195     \[ \oriscus g \pes \auctum \descendens b \]
1196     s^\markup {"t"}
1197   }
1198 \layout { \neumeDemoLayout }}
1199 @end lilypond
1200 @tab
1201
1202 @item
1203 @code{8. Quilisma Pes}
1204 @tab
1205 @lilypond[staffsize=26,line-width=1.0\cm]
1206 \include "gregorian.ly"
1207 \score {
1208   \transpose c c' {
1209     % Quilisma Pes
1210     \[ \quilisma g \pes b \]
1211     s^\markup {"u"}
1212   }
1213 \layout { \neumeDemoLayout }}
1214 @end lilypond
1215 @tab
1216 @lilypond[staffsize=26,line-width=1.0\cm]
1217 \include "gregorian.ly"
1218 \score {
1219   \transpose c c' {
1220     % Quilisma Pes Auctus Descendens
1221     \[ \quilisma g \pes \auctum \descendens b \]
1222     s^\markup {"v"}
1223   }
1224 \layout { \neumeDemoLayout }}
1225 @end lilypond
1226 @tab
1227
1228 @item
1229 @code{9. Podatus Initio Debilis}
1230 @tab
1231 @lilypond[staffsize=26,line-width=1.0\cm]
1232 \include "gregorian.ly"
1233 \score {
1234   \transpose c c' {
1235     % Pes Initio Debilis
1236     \[ \deminutum g \pes b \]
1237     s^\markup {"w"}
1238   }
1239 \layout { \neumeDemoLayout }}
1240 @end lilypond
1241 @tab
1242 @lilypond[staffsize=26,line-width=1.0\cm]
1243 \include "gregorian.ly"
1244 \score {
1245   \transpose c c' {
1246     % Pes Auctus Descendens Initio Debilis
1247     \[ \deminutum g \pes \auctum \descendens b \]
1248     s^\markup {"x"}
1249   }
1250 \layout { \neumeDemoLayout }}
1251 @end lilypond
1252 @tab
1253
1254 @item
1255 @code{10. Torculus}
1256 @tab
1257 @lilypond[staffsize=26,line-width=1.0\cm]
1258 \include "gregorian.ly"
1259 \score {
1260   \transpose c c' {
1261     % Torculus
1262     \[ a \pes b \flexa g \]
1263     s^\markup {"y"}
1264   }
1265 \layout { \neumeDemoLayout }}
1266 @end lilypond
1267 @tab
1268 @lilypond[staffsize=26,line-width=1.0\cm]
1269 \include "gregorian.ly"
1270 \score {
1271   \transpose c c' {
1272     % Torculus Auctus Descendens
1273     \[ a \pes b \flexa \auctum \descendens g \]
1274     s^\markup {"z"}
1275   }
1276 \layout { \neumeDemoLayout }}
1277 @end lilypond
1278 @tab
1279 @lilypond[staffsize=26,line-width=1.0\cm]
1280 \include "gregorian.ly"
1281 \score {
1282   \transpose c c' {
1283     % Torculus Deminutus
1284     \[ a \pes b \flexa \deminutum g \]
1285     s^\markup {"A"}
1286   }
1287 \layout { \neumeDemoLayout }}
1288 @end lilypond
1289
1290 @item
1291 @code{11. Torculus Initio Debilis}
1292 @tab
1293 @lilypond[staffsize=26,line-width=1.0\cm]
1294 \include "gregorian.ly"
1295 \score {
1296   \transpose c c' {
1297     % Torculus Initio Debilis
1298     \[ \deminutum a \pes b \flexa g \]
1299     s^\markup {"B"}
1300   }
1301 \layout { \neumeDemoLayout }}
1302 @end lilypond
1303 @tab
1304 @lilypond[staffsize=26,line-width=1.0\cm]
1305 \include "gregorian.ly"
1306 \score {
1307   \transpose c c' {
1308     % Torculus Auctus Descendens Initio Debilis
1309     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
1310     s^\markup {"C"}
1311   }
1312 \layout { \neumeDemoLayout }}
1313 @end lilypond
1314 @tab
1315 @lilypond[staffsize=26,line-width=1.0\cm]
1316 \include "gregorian.ly"
1317 \score {
1318   \transpose c c' {
1319     % Torculus Deminutus Initio Debilis
1320     \[ \deminutum a \pes b \flexa \deminutum g \]
1321     s^\markup {"D"}
1322   }
1323 \layout { \neumeDemoLayout }}
1324 @end lilypond
1325
1326 @item
1327 @code{12. Porrectus}
1328 @tab
1329 @lilypond[staffsize=26,line-width=1.0\cm]
1330 \include "gregorian.ly"
1331 \score {
1332   \transpose c c' {
1333     % Porrectus
1334     \[ a \flexa g \pes b \]
1335     s^\markup {"E"}
1336   }
1337 \layout { \neumeDemoLayout }}
1338 @end lilypond
1339 @tab
1340 @lilypond[staffsize=26,line-width=1.0\cm]
1341 \include "gregorian.ly"
1342 \score {
1343   \transpose c c' {
1344     % Porrectus Auctus Descendens
1345     \[ a \flexa g \pes \auctum \descendens b \]
1346     s^\markup {"F"}
1347   }
1348 \layout { \neumeDemoLayout }}
1349 @end lilypond
1350 @tab
1351 @lilypond[staffsize=26,line-width=1.0\cm]
1352 \include "gregorian.ly"
1353 \score {
1354   \transpose c c' {
1355     % Porrectus Deminutus
1356     \[ a \flexa g \pes \deminutum b \]
1357     s^\markup {"G"}
1358   }
1359 \layout { \neumeDemoLayout }}
1360 @end lilypond
1361
1362 @item
1363 @code{13. Climacus}
1364 @tab
1365 @lilypond[staffsize=26,line-width=1.0\cm]
1366 \include "gregorian.ly"
1367 \score {
1368   \transpose c c' {
1369     % Climacus
1370     \[ \virga b \inclinatum a \inclinatum g \]
1371     s^\markup {"H"}
1372   }
1373   \layout { \neumeDemoLayout }
1374 }
1375 @end lilypond
1376 @tab
1377 @lilypond[staffsize=26,line-width=1.0\cm]
1378 \include "gregorian.ly"
1379 \score {
1380   \transpose c c' {
1381     % Climacus Auctus
1382     \[ \virga b \inclinatum a \inclinatum \auctum g \]
1383     s^\markup {"I"}
1384   }
1385 \layout { \neumeDemoLayout }}
1386 @end lilypond
1387 @tab
1388 @lilypond[staffsize=26,line-width=1.0\cm]
1389 \include "gregorian.ly"
1390 \score {
1391   \transpose c c' {
1392     % Climacus Deminutus
1393     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
1394     s^\markup {"J"}
1395   }
1396 \layout { \neumeDemoLayout }}
1397 @end lilypond
1398
1399 @item
1400 @code{14. Scandicus}
1401 @tab
1402 @lilypond[staffsize=26,line-width=1.0\cm]
1403 \include "gregorian.ly"
1404 \score {
1405   \transpose c c' {
1406     % Scandicus
1407     \[ g \pes a \virga b \]
1408     s^\markup {"K"}
1409   }
1410 \layout { \neumeDemoLayout }}
1411 @end lilypond
1412 @tab
1413 @lilypond[staffsize=26,line-width=1.0\cm]
1414 \include "gregorian.ly"
1415 \score {
1416   \transpose c c' {
1417     % Scandicus Auctus Descendens
1418     \[ g \pes a \pes \auctum \descendens b \]
1419     s^\markup {"L"}
1420   }
1421 \layout { \neumeDemoLayout }}
1422 @end lilypond
1423 @tab
1424 @lilypond[staffsize=26,line-width=1.0\cm]
1425 \include "gregorian.ly"
1426 \score {
1427   \transpose c c' {
1428     % Scandicus Deminutus
1429     \[ g \pes a \pes \deminutum b \]
1430     s^\markup {"M"}
1431   }
1432 \layout { \neumeDemoLayout }}
1433 @end lilypond
1434
1435 @item
1436 @code{15. Salicus}
1437 @tab
1438 @lilypond[staffsize=26,line-width=1.0\cm]
1439 \include "gregorian.ly"
1440 \score {
1441   \transpose c c' {
1442     % Salicus
1443     \[ g \oriscus a \pes \virga b \]
1444     s^\markup {"N"}
1445   }
1446 \layout { \neumeDemoLayout }}
1447 @end lilypond
1448 @tab
1449 @lilypond[staffsize=26,line-width=1.0\cm]
1450 \include "gregorian.ly"
1451 \score {
1452   \transpose c c' {
1453     % Salicus Auctus Descendens
1454     \[ g \oriscus a \pes \auctum \descendens b \]
1455     s^\markup {"O"}
1456   }
1457 \layout { \neumeDemoLayout }}
1458 @end lilypond
1459 @tab
1460
1461 @item
1462 @code{16. Trigonus}
1463 @tab
1464 @lilypond[staffsize=26,line-width=1.0\cm]
1465 \include "gregorian.ly"
1466 \score {
1467   \transpose c c' {
1468     % Trigonus
1469     \[ \stropha b \stropha b \stropha a \]
1470     s^\markup {"P"}
1471   }
1472   \layout { \neumeDemoLayout }
1473 }
1474 @end lilypond
1475 @tab
1476 @tab
1477
1478 @end multitable
1479
1480 Anders als in den meisten Neumennotationssystemen zeigt der Quellcode
1481 von LilyPond nicht das typographische Aussehen der Ligatur an, sondern
1482 deren musikalischen Inhalt. Der Code  @code{\[ a \pes b
1483 \flexa g \]} etwa ergibt einen Torculus, der aus drei Punctum-Köpfen besteht,
1484 während @code{\[ a \flexa g \pes b \]} einen Porrectus mit einer gekrümmten
1485 Flexa und einem einzelnen Punctum ausgibt.
1486 Es gibt also keinen Befehl, der explizit eine gekrümmte Flexa setzen würde;
1487 die Entscheidung, wann diese gesetzt werden soll hängt vielmehr davon ab,
1488 welcher musikalische Inhalt dargestellt werden soll. Der Sinn dieser
1489 Herangehensweise ist es, den Inhalt von der graphischen Repräsentation zu
1490 trennen. Auf diese Art kann mit der gleichen Eingabe ein anderer gregorianischer
1491 Stil gesetzt werden, ohne die Notation zu verändern.
1492
1493 Die folgende Tabelle zeigt Code-Fragmente, mit denen die Ligaturen der vorigen
1494 Tabelle erstellt werden können. Der Buchstabe in der ersten Spalte jeder Zeile
1495 der unteren Tabelle zeigt an, auf welche Ligatur in der vorigen Tabelle sie sich
1496 bezieht. In der zweiten Spalte erscheint die Bezeichnung der Ligatur. Die dritte
1497 Spalte enthält das Fragment, mit dem die Ligatur erzeugt wurde, wobei
1498 @code{g}, @code{a} und @code{b} als Beispieltonhöhen eingesetzt werden.
1499
1500 @multitable @columnfractions .02 .31 .67
1501 @item
1502 @b{#}
1503 @tab
1504 @b{Name}
1505 @tab
1506 @b{Input Language}
1507
1508 @item
1509 a
1510 @tab
1511 Punctum
1512 @tab
1513 @code{\[ b \]}
1514
1515 @item
1516 b
1517 @tab
1518 Punctum Inclinatum
1519 @tab
1520 @code{\[ \inclinatum b \]}
1521
1522 @item
1523 c
1524 @tab
1525 Punctum Auctum@*
1526 Ascendens
1527 @tab
1528 @code{\[ \auctum \ascendens b \]}
1529
1530 @item
1531 d
1532 @tab
1533 Punctum Auctum@*
1534 Descendens
1535 @tab
1536 @code{\[ \auctum \descendens b \]}
1537
1538 @item
1539 e
1540 @tab
1541 Punctum Inclinatum@*
1542 Auctum
1543 @tab
1544 @code{\[ \inclinatum \auctum b \]}
1545
1546 @item
1547 f
1548 @tab
1549 Punctum Inclinatum@*
1550 Parvum @tab
1551 @code{\[ \inclinatum \deminutum b \]}
1552
1553 @item
1554 g
1555 @tab
1556 Virga
1557 @tab
1558 @code{\[ \virga b \]}
1559
1560 @item
1561 h
1562 @tab
1563 Stropha
1564 @tab
1565 @code{\[ \stropha b \]}
1566
1567 @item
1568 i
1569 @tab
1570 Stropha Aucta
1571 @tab
1572 @code{\[ \stropha \auctum b \]}
1573
1574 @item
1575 j
1576 @tab
1577 Oriscus
1578 @tab
1579 @code{\[ \oriscus b \]}
1580
1581 @item
1582 k
1583 @tab
1584 Clivis vel Flexa
1585 @tab
1586 @code{\[ b \flexa g \]}
1587
1588 @item
1589 l
1590 @tab
1591 Clivis Aucta@*
1592 Descendens
1593 @tab
1594 @code{\[ b \flexa \auctum \descendens g \]}
1595
1596 @item
1597 m
1598 @tab
1599 Clivis Aucta@*
1600 Ascendens
1601 @tab
1602 @code{\[ b \flexa \auctum \ascendens g \]}
1603
1604 @item
1605 n
1606 @tab
1607 Cephalicus
1608 @tab
1609 @code{\[ b \flexa \deminutum g \]}
1610
1611 @item
1612 o
1613 @tab
1614 Podatus vel Pes
1615 @tab
1616 @code{\[ g \pes b \]}
1617
1618 @item
1619 p
1620 @tab
1621 Pes Auctus@*
1622 Descendens
1623 @tab
1624 @code{\[ g \pes \auctum \descendens b \]}
1625
1626 @item
1627 q
1628 @tab
1629 Pes Auctus@*
1630 Ascendens
1631 @tab
1632 @code{\[ g \pes \auctum \ascendens b \]}
1633
1634 @item
1635 r
1636 @tab
1637 Epiphonus
1638 @tab
1639 @code{\[ g \pes \deminutum b \]}
1640
1641 @item
1642 s
1643 @tab
1644 Pes Quassus
1645 @tab
1646 @code{\[ \oriscus g \pes \virga b \]}
1647
1648 @item
1649 t
1650 @tab
1651 Pes Quassus@*
1652 Auctus Descendens @tab
1653 @code{\[ \oriscus g \pes \auctum \descendens b \]}
1654
1655 @item
1656 u
1657 @tab
1658 Quilisma Pes
1659 @tab
1660 @code{\[ \quilisma g \pes b \]}
1661
1662 @item
1663 v
1664 @tab
1665 Quilisma Pes@*
1666 Auctus Descendens
1667 @tab
1668 @code{\[ \quilisma g \pes \auctum \descendens b \]}
1669
1670 @item
1671 w
1672 @tab
1673 Pes Initio Debilis
1674 @tab
1675 @code{\[ \deminutum g \pes b \]}
1676
1677 @item
1678 x
1679 @tab
1680 Pes Auctus Descendens@*
1681 Initio Debilis
1682 @tab
1683 @code{\[ \deminutum g \pes \auctum \descendens b \]}
1684
1685 @item
1686 y
1687 @tab
1688 Torculus
1689 @tab
1690 @code{\[ a \pes b \flexa g \]}
1691
1692 @item
1693 z
1694 @tab
1695 Torculus Auctus@*
1696 Descendens
1697 @tab
1698 @code{\[ a \pes b \flexa \auctum \descendens g \]}
1699
1700 @item
1701 A
1702 @tab
1703 Torculus Deminutus
1704 @tab
1705 @code{\[ a \pes b \flexa \deminutum g \]}
1706
1707 @item
1708 B
1709 @tab
1710 Torculus Initio Debilis
1711 @tab
1712 @code{\[ \deminutum a \pes b \flexa g \]}
1713
1714 @item
1715 C
1716 @tab
1717 Torculus Auctus@*
1718 Descendens Initio Debilis
1719 @tab
1720 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
1721
1722 @item
1723 D
1724 @tab
1725 Torculus Deminutus@*
1726 Initio Debilis
1727 @tab
1728 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
1729
1730 @item
1731 E
1732 @tab
1733 Porrectus
1734 @tab
1735 @code{\[ a \flexa g \pes b \]}
1736
1737 @item
1738 F
1739 @tab
1740 Porrectus Auctus@*
1741 Descendens
1742 @tab
1743 @code{\[ a \flexa g \pes \auctum \descendens b \]}
1744
1745 @item
1746 G
1747 @tab
1748 Porrectus Deminutus
1749 @tab
1750 @code{\[ a \flexa g \pes \deminutum b \]}
1751
1752 @item
1753 H
1754 @tab
1755 Climacus
1756 @tab
1757 @code{\[ \virga b \inclinatum a \inclinatum g \]}
1758
1759 @item
1760 I
1761 @tab
1762 Climacus Auctus
1763 @tab
1764 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
1765
1766 @item
1767 J
1768 @tab
1769 Climacus Deminutus
1770 @tab
1771 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
1772
1773 @item
1774 K
1775 @tab
1776 Scandicus
1777 @tab
1778 @code{\[ g \pes a \virga b \]}
1779
1780 @item
1781 L
1782 @tab
1783 Scandicus Auctus@*
1784 Descendens
1785 @tab
1786 @code{\[ g \pes a \pes \auctum \descendens b \]}
1787
1788 @item
1789 M
1790 @tab
1791 Scandicus Deminutus
1792 @tab
1793 @code{\[ g \pes a \pes \deminutum b \]}
1794
1795 @item
1796 N
1797 @tab
1798 Salicus
1799 @tab
1800 @code{\[ g \oriscus a \pes \virga b \]}
1801
1802 @item
1803 O
1804 @tab
1805 Salicus Auctus Descendens
1806 @tab
1807 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
1808
1809 @item
1810 P
1811 @tab
1812 Trigonus
1813 @tab
1814 @code{\[ \stropha b \stropha b \stropha a \]}
1815 @end multitable
1816
1817 Die Ligaturen dieser Liste dienen als begrenzter, aber doch
1818 repräsentativer Vorrat an Ligaturbeispielen des Gregorianischen
1819 Chorals. Innerhalb der Ligaturbegrenzungen  @code{\[} und
1820 @code{\]}  kann jedoch problemlos jede nur mögliche Anzahl an
1821 Noten gesetzt werden, und Präfixe wie
1822 @code{\pes}, @code{\flexa}, @code{\virga}, @code{\inclinatum},
1823 usw können nach Belieben gemischt werden. Die Regeln,
1824 die der Konstruktion der Ligaturen in den Tabellen zugrunde liegen,
1825 werden entsprechend angepasst. Auf diese Weise können unendlich
1826 viele Ligaturen gesetzt werden.
1827
1828 Augmentum-Punkte, auch @emph{morae} genannt, werden mit dem
1829 Befehl @code{\augmentum} hinzugefügt. @code{\augmentum} ist allerdings
1830 als eigene musikalische Funktion gebaut und nicht als ein Notenpräfix.
1831 Insofern hat der Befehl in diesem Kontext:
1832 @code{\augmentum \virga c} keine sichtbaren Auswirkungen. Erst mit
1833 @code{\virga \augmentum c} oder @code{\augmentum @{\virga c@}}
1834 funktionieren beide Befehle. Es ist auch möglich, mit
1835 @code{\augmentum @{a g@}} die Schreibweise
1836 @code{\augmentum a \augmentum g} abzukürzen.
1837
1838 @lilypond[quote,ragged-right,verbatim]
1839 \include "gregorian.ly"
1840 \score {
1841   \new VaticanaVoice {
1842     \[ \augmentum a \flexa \augmentum g \]
1843     \augmentum g
1844   }
1845 }
1846 @end lilypond
1847
1848
1849 @predefined
1850 Folgende Notenpräfixe sind unterstützt:
1851 @funindex \virga
1852 @code{\virga},
1853 @funindex \stropha
1854 @code{\stropha},
1855 @funindex \inclinatum
1856 @code{\inclinatum},
1857 @funindex \auctum
1858 @code{\auctum},
1859 @funindex \descendens
1860 @code{\descendens},
1861 @funindex \ascendens
1862 @code{\ascendens},
1863 @funindex \oriscus
1864 @code{\oriscus},
1865 @funindex \quilisma
1866 @code{\quilisma},
1867 @funindex \deminutum
1868 @code{\deminutum},
1869 @funindex \cavum
1870 @code{\cavum},
1871 @funindex \linea
1872 @code{\linea}.
1873 @endpredefined
1874
1875
1876 Präfixe können kombiniert werden, wenn es hier auch Begrenzungen
1877 gibt. Zum Beispiel können die Präfixe @code{\descendens} oder
1878 @code{\ascendens} vor einer Note geschrieben werden, aber nicht
1879 beide für die selbe Note
1880 .
1881 @funindex \pes
1882 @funindex \flexa
1883 Zwei benachbarte Noten können mit den @code{\pes} und
1884 @code{\flexa}-Infixen verbunden werden, um eine steigende bwz.
1885 fallende Melodielinie zu notieren.
1886
1887 @funindex \augmentum
1888 Die musikalische Funktion @code{\augmentum} muss benutzt werden, um
1889 augmentum-Punkte hinzuzufügen.
1890
1891 @knownissues
1892
1893 Wenn ein @code{\augmentum}-Punkt am Ende des letzten Systems innerhalb
1894 einer Ligatur gesetzt wird, ist er vertikal etwas falsch positioniert. Als
1895 Abhilfe kann eine unsichtbare Note (z. B. @code{s8}) als letzte Note im
1896 System eingegeben werden.
1897
1898 @code{\augmentum} sollte als Präfix implementiert sein, nicht als eigene
1899 musikalische Funktion, so dass @code{\augmentum} mit den anderen
1900 Präfixen in arbiträrer Reihenfolge notiert werden kann.
1901
1902
1903 @node Pre-defined contexts
1904 @subsection Pre-defined contexts
1905
1906 @untranslated
1907
1908 @menu
1909 * Gregorian chant contexts::
1910 * Mensural contexts::
1911 @end menu
1912
1913
1914 @node Gregorian chant contexts
1915 @unnumberedsubsubsec Gregorian chant contexts
1916
1917 @cindex VaticanaVoiceContext
1918 @cindex VaticanaStaffContext
1919
1920 Die vordefinierten Kontexte @code{VaticanaVoiceContext} (für eine
1921 gregorianische Stimme) und @code{VaticanaStaffContext} (für ein
1922 gregorianisches Notensystem) können eingesetzt werden, um
1923 Gregorianischen Choral im Stil der Editio Vaticana zu setzen. Diese
1924 Kontexte initialisieren alle relevanten Eigenschaften für das Notensystem
1925 und die graphischen Objekte, so dass unmittelbar mit der Notation
1926 begonnen werden kann. Siehe das folgende Beispiel:
1927
1928 @lilypond[quote,ragged-right,packed,verbatim]
1929 \include "gregorian.ly"
1930 \score {
1931   <<
1932     \new VaticanaVoice = "cantus" {
1933       \[ c'\melisma c' \flexa a \]
1934       \[ a \flexa \deminutum g\melismaEnd \]
1935       f \divisioMinima
1936       \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
1937       c' \divisioMinima \break
1938       \[ c'\melisma c' \flexa a \]
1939       \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
1940     }
1941     \new Lyrics \lyricsto "cantus" {
1942       San- ctus, San- ctus, San- ctus
1943     }
1944   >>
1945 }
1946 @end lilypond
1947
1948
1949 @node Mensural contexts
1950 @unnumberedsubsubsec Mensural contexts
1951
1952 @cindex MensuralVoiceContext
1953 @cindex MensuralStaffContext
1954
1955 Die vordefinierten Kontexte @code{MensuralVoiceContext} und
1956 @code{MensuralStaffContext} können eingesetzt werden, um
1957 ein Stück in Mensuralnotations zu schreiben. Die Kontexte
1958 initialisieren alle relevanten Eigenschaften der Kontexte und
1959 graphischen Objekte, so dass unmittelbar mit der Notation begonnen
1960 werden kann. Siehe das folgende Beispiel:
1961
1962 @lilypond[quote,ragged-right,verbatim]
1963 \score {
1964   <<
1965     \new MensuralVoice = "discantus" \transpose c c' {
1966       \override Score.BarNumber #'transparent = ##t {
1967         c'1\melisma bes a g\melismaEnd
1968         f\breve
1969         \[ f1\melisma a c'\breve d'\melismaEnd \]
1970         c'\longa
1971         c'\breve\melisma a1 g1\melismaEnd
1972         fis\longa^\signumcongruentiae
1973       }
1974     }
1975     \new Lyrics \lyricsto "discantus" {
1976       San -- ctus, San -- ctus, San -- ctus
1977     }
1978   >>
1979 }
1980 @end lilypond
1981
1982
1983 @node Transcribing ancient music
1984 @subsection Transcribing ancient music
1985
1986 @untranslated
1987
1988 @menu
1989 * Ancient and modern from one source::
1990 * Incipits::
1991 * Mensurstriche layout::
1992 * Transcribing Gregorian chant::
1993 @end menu
1994
1995
1996 @node Ancient and modern from one source
1997 @unnumberedsubsubsec Ancient and modern from one source
1998
1999 @untranslated
2000
2001
2002 @node Incipits
2003 @unnumberedsubsubsec Incipits
2004
2005 @untranslated
2006
2007
2008 @node Mensurstriche layout
2009 @unnumberedsubsubsec Mensurstriche layout
2010
2011 @untranslated
2012
2013
2014 @node Transcribing Gregorian chant
2015 @unnumberedsubsubsec Transcribing Gregorian chant
2016
2017 @untranslated
2018
2019
2020 @node Editorial markings
2021 @subsection Editorial markings
2022
2023 @untranslated
2024
2025 @menu
2026 * Annotational accidentals::
2027 * Baroque rhythmic notation::
2028 @end menu
2029
2030
2031 @node Annotational accidentals
2032 @unnumberedsubsubsec Annotational accidentals
2033
2034 In der europäischen Musik vor 1600 wurden vom Sänger oftmals
2035 chromatische Alterationen erwartet, die nicht notiert wurden.
2036 Diese Praxis wird @qq{Musica Ficta} genannt. In modernen
2037 Transkripition werden die Versetzungszeichen üblicherweise
2038 oberhalb der Noten gesetzt.
2039
2040 @cindex Versetzungszeichen, musica ficta
2041 @cindex Musica ficta
2042
2043 Unterstützung für solche empfohlenen Versetzungszeichen ist
2044 implementiert und kann aktiviert werden, indem die
2045 Eigenschaft @code{suggestAccidentals} auf wahr gesetzt wird.
2046 Siehe auch das Beispiel.
2047
2048 @funindex suggestAccidentals
2049
2050 @lilypond[verbatim,fragment,relative=1]
2051 fis gis
2052 \set suggestAccidentals = ##t
2053 ais bis
2054 @end lilypond
2055
2056 @seealso
2057
2058 Programmreferenz: @rinternals{Accidental_engraver}-Setzer und das
2059 @rinternals{AccidentalSuggestion}-Objekt.
2060
2061
2062 @node Baroque rhythmic notation
2063 @unnumberedsubsubsec Baroque rhythmic notation
2064
2065 @untranslated
2066