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