]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/user/instrument-notation.itely
Small update to bagpipe docs.
[lilypond.git] / Documentation / user / instrument-notation.itely
1 @c -*- coding: latin-1; mode: texinfo; -*-
2 @c This file is part of lilypond.tely
3
4 @c A menu is needed before every deeper *section nesting of @node's; run 
5 @c     M-x texinfo-all-menus-update
6 @c to automatically fill in these menus before saving changes
7
8 @node Instrument-specific notation
9 @chapter Instrument-specific notation
10
11 This chapter explains how to use notation for specific instruments.
12
13 @menu
14 * Piano music::                 
15 * Chord names::                 
16 * Vocal music::                 
17 * Rhythmic music::              
18 * Guitar::                      
19 * Bagpipe::                     
20 * Ancient notation::            
21 * Other instrument specific notation::  
22 @end menu
23
24
25
26 @node Piano music
27 @section Piano music
28
29 Piano staves are two normal staves coupled with a brace.  The staves
30 are largely independent, but sometimes voices can cross between the
31 two staves.  The same notation is also used for harps and other key
32 instruments.  The @internalsref{PianoStaff} is especially built to
33 handle this cross-staffing behavior.  In this section we discuss the
34 @internalsref{PianoStaff} and some other pianistic peculiarities.
35
36 @menu
37 * Automatic staff changes::     
38 * Manual staff switches::       
39 * Pedals::                      
40 * Staff switch lines::          
41 * Cross staff stems::           
42 @end menu
43
44 @
45 refbugs
46
47 Dynamics are not centered, but workarounds do exist.  See the
48 ``piano centered dynamics'' template in @ref{Piano templates}.
49
50 @cindex cross staff stem
51 @cindex stem, cross staff
52 @cindex distance between staves in piano music
53
54 The distance between the two staves is the same for all systems in the
55 score.  It is possible to override this per system, but it does require
56 an arcane command incantation.  See
57 @inputfileref{input/@/test,piano@/-staff@/-distance@/.ly}.
58
59
60 @node Automatic staff changes
61 @subsection Automatic staff changes
62 @cindex Automatic staff changes
63
64 Voices can be made to switch automatically between the top and the bottom
65 staff.  The syntax for this is
66
67 @quotation
68 @example
69 \autochange @dots{}@var{music}@dots{}
70 @end example
71 @end quotation
72
73 @noindent
74 This will create two staves inside the current PianoStaff, called
75 @code{up} and @code{down}.  The lower staff will be in bass clef by
76 default.
77
78 A @code{\relative} section that is outside of @code{\autochange} has
79 no effect on the pitches of @var{music}, so, if necessary, put
80 @code{\relative} inside @code{\autochange} like
81
82 @quotation
83 @example
84 \autochange \relative @dots{} @dots{}
85 @end example
86 @end quotation
87
88
89 The autochanger switches on basis of the pitch (middle C is the turning
90 point), and it looks ahead skipping over rests to switch in
91 advance.  Here is a practical example
92
93 @lilypond[quote,verbatim,raggedright]
94 \context PianoStaff
95   \autochange \relative c'
96   {
97     g4 a b c d r4 a g
98   }
99 @end lilypond
100
101
102 @seealso
103
104 In this manual: @ref{Manual staff switches}.
105
106 Program reference: @internalsref{AutoChangeMusic}.
107
108
109
110 @refbugs
111
112 The staff switches may not end up in optimal places.  For high
113 quality output, staff switches should be specified manually.
114
115
116 @code{\autochange} cannot be inside @code{\times}.
117
118
119 @node Manual staff switches
120 @subsection Manual staff switches
121
122 @cindex manual staff switches
123 @cindex staff switch, manual
124
125 Voices can be switched between staves manually, using the command
126 @example
127 \change Staff = @var{staffname} @var{music}
128 @end example
129
130 @noindent
131 The string @var{staffname} is the name of the staff.  It switches the
132 current voice from its current staff to the Staff called
133 @var{staffname}.  Typically @var{staffname} is @code{"up"} or
134 @code{"down"}.  The @context{Staff} referred to must already exist, so
135 usually the setup for a score will start with a setup of the staves,
136
137 @example
138 <<
139   \context Staff = up @{
140     \skip 1 * 10  % @emph{keep staff alive}
141     @}
142   \context Staff = down @{
143     \skip 1 * 10  % @emph{idem}
144     @}
145 >>
146 @end example
147
148
149 and the @context{Voice} is inserted afterwards
150
151 @example
152 \context Staff = down
153   \new Voice @{ @dots{} \change Staff = up @dots{} @}
154 @end example
155
156
157 @node Pedals
158 @subsection Pedals
159 @cindex Pedals
160
161 Pianos have pedals that alter the way sound is produced.  Generally, a
162 piano has three pedals, sustain, una corda, and sostenuto.
163
164
165 Piano pedal instruction can be expressed by attaching
166 @code{\sustainDown}, @code{\sustainUp}, @code{\unaCorda},
167 @code{\treCorde}, @code{\sostenutoDown} and @code{\sostenutoUp} to a
168 note or chord
169
170 @lilypond[quote,raggedright,fragment,verbatim]
171 c'4\sustainDown c'4\sustainUp
172 @end lilypond
173
174 What is printed can be modified by setting @code{pedal@var{X}Strings},
175 where @var{X} is one of the pedal types: @code{Sustain},
176 @code{Sostenuto} or @code{UnaCorda}.  Refer to
177 @internalsref{SustainPedal} in the program reference for more
178 information.
179
180 Pedals can also be indicated by a sequence of brackets, by setting the
181 @code{pedalSustainStyle} property to bracket objects
182
183 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
184 \set Staff.pedalSustainStyle = #'bracket
185 c\sustainDown d e
186 b\sustainUp\sustainDown
187 b g \sustainUp a \sustainDown \bar "|."
188 @end lilypond
189
190 A third style of pedal notation is a mixture of text and brackets,
191 obtained by setting the @code{pedalSustainStyle} property to
192 @code{mixed}
193
194 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
195 \set Staff.pedalSustainStyle = #'mixed
196 c\sustainDown d e
197 b\sustainUp\sustainDown
198 b g \sustainUp a \sustainDown \bar "|."
199 @end lilypond
200
201 The default `*Ped.' style for sustain and damper pedals corresponds to
202 style @code{#'text}.  The sostenuto pedal uses @code{mixed} style by
203 default.
204
205 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
206 c\sostenutoDown d e c, f g a\sostenutoUp
207 @end lilypond
208
209 For fine-tuning the appearance of a pedal bracket, the properties
210 @code{edge-width}, @code{edge-height}, and @code{shorten-pair} of
211 @code{PianoPedalBracket} objects (see
212 @internalsref{PianoPedalBracket} in the Program reference) can be
213 modified.  For example, the bracket may be extended to the right edge
214 of the note head
215
216 @lilypond[quote,raggedright,fragment,verbatim,relative=2]
217 \override Staff.PianoPedalBracket #'shorten-pair = #'(0 . -1.0)
218 c\sostenutoDown d e c, f g a\sostenutoUp
219 @end lilypond
220
221 @node Staff switch lines
222 @subsection Staff switch lines
223
224
225 @cindex follow voice
226 @cindex staff switching
227 @cindex cross staff
228
229 @cindex @code{followVoice}
230
231 Whenever a voice switches to another staff, a line connecting the notes
232 can be printed automatically.  This is switched on by setting
233 @code{followVoice} to true
234
235 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
236 \new PianoStaff <<
237   \context Staff=one {
238     \set followVoice = ##t
239     c1
240     \change Staff=two
241     b2 a
242   }
243   \context Staff=two { \clef bass \skip 1*2 }
244 >>
245 @end lilypond
246
247 @seealso
248
249 Program reference: @internalsref{VoiceFollower}.
250
251 @refcommands
252
253 @cindex @code{\showStaffSwitch}
254 @code{\showStaffSwitch},
255 @cindex @code{\hideStaffSwitch}
256 @code{\hideStaffSwitch}.
257
258
259 @node Cross staff stems
260 @subsection Cross staff stems
261
262 Chords that cross staves may be produced by increasing the length
263 of the stem in the lower staff, so it reaches the stem in the upper
264 staff, or vice versa.
265
266 @lilypond[raggedright,verbatim,quote]
267 stemExtend = \once \override Stem #'length = #22
268 noFlag = \once \override Stem #'flag-style = #'no-flag
269 \context PianoStaff <<
270   \new Staff {
271     \stemDown \stemExtend
272     f'4
273     \stemExtend \noFlag
274     f'8
275   }
276   \new Staff {
277     \clef bass
278     a4 a8
279   }
280 >>
281 @end lilypond
282
283
284
285 @node Chord names
286 @section Chord names
287
288 @menu
289 * Introducing chord names::     
290 * Chords mode::                 
291 * Printing chord names::        
292 @end menu
293
294
295 @c  awkward name; awkward section name.
296 @c  still, the Basic "chords" seems like a good name...  :(
297 @node Introducing chord names
298 @subsection Introducing chord names
299 @cindex chord names
300
301 LilyPond has support for printing chord names.  Chords may be entered
302 in musical chord notation, i.e., @code{< .. >}, but they can also be
303 entered by name.  Internally, the chords are represented as a set of
304 pitches, so they can be transposed
305
306
307 @lilypond[quote,raggedright,verbatim,raggedright]
308 twoWays = \transpose c c' {
309   \chordmode {
310     c1 f:sus4 bes/f
311   }
312   <c e g>
313   <f bes c'>
314   <f bes d'>
315 }
316
317 << \context ChordNames \twoWays
318    \context Voice \twoWays >>
319 @end lilypond
320
321 This example also shows that the chord printing routines do not try to
322 be intelligent.  The last chord (@code{f bes d}) is not interpreted as
323 an inversion.
324
325 Note that the duration of chords must be specified outside the
326 @code{<>}.
327
328 @example
329 <c e g>2
330 @end example
331
332
333 @node Chords mode
334 @subsection Chords mode
335 @cindex Chords mode
336
337 In chord mode sets of pitches (chords) are entered with normal note
338 names.  A chord is entered by the root, which is entered like a
339 normal pitch
340
341 @lilypond[quote,raggedright,fragment,verbatim]
342 \chordmode { es4. d8 c2 }
343 @end lilypond
344
345 @noindent
346 The mode is introduced by the keyword @code{\chordmode}.
347
348 @cindex chord entry
349 @cindex chord mode
350
351 Other chords may be entered by suffixing a colon and introducing a
352 modifier (which may include a number if desired)
353 @lilypond[quote,fragment,verbatim]
354 \chordmode { e1:m e1:7 e1:m7 }
355 @end lilypond
356 The first number following the root is taken to be the `type' of the
357 chord, thirds are added to the root until it reaches the specified
358 number
359 @lilypond[quote,fragment,verbatim]
360 \chordmode { c:3 c:5 c:6 c:7 c:8 c:9 c:10 c:11 }
361 @end lilypond
362
363 @cindex root of chord
364 @cindex additions, in chords
365 @cindex removals, in chords
366
367 More complex chords may also be constructed adding separate steps
368 to a chord.  Additions are added after the number following
369 the colon and are separated by dots
370 @lilypond[quote,verbatim,fragment]
371 \chordmode { c:5.6 c:3.7.8 c:3.6.13 }
372 @end lilypond
373 Chord steps can be altered by suffixing a @code{-} or @code{+} sign
374 to the number
375 @lilypond[quote,verbatim,fragment]
376 \chordmode { c:7+ c:5+.3- c:3-.5-.7- }
377 @end lilypond
378 Removals are specified similarly and are introduced by a caret.  They
379 must come after the additions
380 @lilypond[quote,verbatim,fragment]
381 \chordmode { c^3 c:7^5 c:9^3.5 }
382 @end lilypond
383
384 Modifiers can be used to change pitches.  The following modifiers are
385 supported
386
387 @table @code
388 @item m
389 The minor chord.  This modifier lowers the 3rd and (if present) the 7th step.
390
391 @item dim
392 The diminished chord.  This modifier lowers the 3rd, 5th and (if present)
393 the 7th step.
394
395 @item aug
396 The augmented chord.  This modifier raises the 5th step.
397
398 @item maj
399 The major 7th chord.  This modifier raises the 7th step if present.
400
401 @item sus
402 The suspended 4th or 2nd.  This modifier removes the 3rd
403 step.  Append either @code{2} or @code{4} to add the 2nd or 4th step to
404 the chord.
405 @end table
406
407 Modifiers can be mixed with additions
408 @lilypond[quote,verbatim,fragment]
409   \chordmode { c:sus4 c:7sus4 c:dim7 c:m6 }
410 @end lilypond
411
412 @cindex modifiers, in chords.
413 @cindex @code{aug}
414 @cindex @code{dim}
415 @cindex @code{maj}
416 @cindex @code{sus}
417 @cindex @code{m}
418
419 Since an unaltered 11 does not sound good when combined with an
420 unaltered 3, the 11 is removed in this case (unless it is added
421 explicitly)
422 @lilypond[quote,raggedright,fragment,verbatim]
423 \chordmode { c:13 c:13.11 c:m13 }
424 @end lilypond
425
426 @cindex @code{/}
427
428 An inversion (putting one pitch of the chord on the bottom), as well
429 as bass notes, can be specified by appending
430 @code{/}@var{pitch} to the chord
431 @lilypond[quote,raggedright,fragment,verbatim]
432 \chordmode { c1 c/g c/f }
433 @end lilypond
434 @cindex @code{/+}
435
436 A bass note can be added instead transposed out of the chord,
437 by using @code{/+}@var{pitch}.
438
439 @lilypond[quote,raggedright,fragment,verbatim]
440 \chordmode { c1 c/+g c/+f }
441 @end lilypond
442
443 Chords is a mode similar to @code{\lyricmode}, etc.  Most
444 of the commands continue to work, for example, @code{r} and
445 @code{\skip} can be used to insert rests and spaces, and property
446 commands may be used to change various settings.
447
448
449
450 @refbugs
451
452 Each step can only be present in a chord once.  The following
453 simply produces the augmented chord, since @code{5+} is interpreted
454 last
455 @cindex clusters
456 @lilypond[quote,raggedright,verbatim,fragment]
457 \chordmode { c:5.5-.5+ }
458 @end lilypond
459
460
461 @node Printing chord names
462 @subsection Printing chord names
463
464 @cindex printing chord names
465 @cindex chord names
466 @cindex chords
467
468 For displaying printed chord names, use the @internalsref{ChordNames} context.
469 The chords may be entered either using the notation
470 described above, or directly using @code{<} and @code{>}
471
472 @lilypond[quote,verbatim,raggedright]
473 harmonies = {
474   \chordmode {a1 b c} <d' f' a'> <e' g' b'>
475 }
476 <<
477   \context ChordNames \harmonies
478   \context Staff \harmonies
479 >>
480 @end lilypond
481
482 You can make the chord changes stand out by setting
483 @internalsref{ChordNames}.@code{chordChanges} to true.  This will only
484 display chord names when there is a change in the chords scheme and at
485 the start of a new line
486
487 @lilypond[quote,verbatim,raggedright]
488 harmonies = \chordmode {
489   c1:m c:m \break c:m c:m d
490 }
491 <<
492   \context ChordNames {
493     \set chordChanges = ##t
494     \harmonies }
495   \context Staff \transpose c c' \harmonies
496 >>
497 @end lilypond
498
499 The previous examples all show chords over a staff.  This is not
500 necessary.  Chords may also be printed separately.  It may be necessary
501 to add @internalsref{Volta_engraver} and @internalsref{Bar_engraver}
502 for showing repeats.
503
504 @lilypond[raggedright,verbatim]
505 \new ChordNames \with {
506   \override BarLine #'bar-size = #4
507   voltaOnThisStaff = ##t
508   \consists Bar_engraver
509   \consists "Volta_engraver"
510 }
511 \repeat volta 2 \chordmode {
512   f1:maj f:7 bes:7
513   c:maj
514 } \alternative {
515   es e
516 }
517 @end lilypond
518
519
520 The default chord name layout is a system for Jazz music, proposed by
521 Klaus Ignatzek (see @ref{Literature list}).  It can be tuned through the
522 following properties
523
524 @table @code
525 @cindex @code{chordNameExceptions}
526 @item chordNameExceptions
527 This is a list that contains the chords that have special formatting.
528
529 The exceptions list should be encoded as
530 @example
531 @{ <c f g bes>1 \markup @{ \super "7" "wahh" @} @}
532 @end example
533
534 To get this information into @code{chordNameExceptions} takes a little
535 manoeuvring.  The following code transforms @code{chExceptionMusic}
536 (which is a sequential music) into a list of exceptions.
537 @example
538 (sequential-music-to-chord-exceptions chExceptionMusic #t)
539 @end example
540 Then,
541 @example
542 (append
543  (sequential-music-to-chord-exceptions chExceptionMusic #t)
544  ignatzekExceptions)
545 @end example
546 adds the new exceptions to the default ones, which are defined in
547 @file{ly/@/chord@/-modifier@/-init@/.ly}.
548
549 For an example of tuning this property, see also
550 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly}.
551 @cindex exceptions, chord names.
552
553
554 @cindex @code{majorSevenSymbol}
555 @item majorSevenSymbol
556 This property contains the markup object used for the 7th step, when
557 it is major.  Predefined options are @code{whiteTriangleMarkup} and
558 @code{blackTriangleMarkup}.  See
559 @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly} for an example.
560
561 @cindex @code{chordNameSeparator}
562 @item chordNameSeparator
563 Different parts of a chord name are normally separated by a
564 slash.  By setting @code{chordNameSeparator}, you can specify other
565 separators, e.g.,
566 @lilypond[quote,raggedright,fragment,verbatim]
567 \context ChordNames \chordmode {
568   c:7sus4
569   \set chordNameSeparator
570     = \markup { \typewriter "|" }
571   c:7sus4
572 }
573 @end lilypond
574
575 @cindex @code{chordRootNamer}
576 @item chordRootNamer
577 The root of a chord is usually printed as a letter with an optional
578 alteration.  The transformation from pitch to letter is done by this
579 function.  Special note names (for example, the German ``H'' for a
580 B-chord) can be produced by storing a new function in this property.
581
582 @cindex @code{chordNoteNamer}
583 @item chordNoteNamer
584 The default is to print single pitch, e.g., the bass note, using the
585 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
586 to a specialized function to change this behavior.  For example, the
587 base can be printed in lower case.
588
589 @cindex @code{chordPrefixSpacer}
590 @item chordPrefixSpacer
591 The ``m'' for minor chords is usually printed right after the root of 
592 the chord. By setting @code{chordPrefixSpacer}, you can fix a spacer 
593 between the root and ``m''. The spacer is not used when the root
594 is altered.
595
596 @end table
597
598 The predefined variables @code{\germanChords},
599 @code{\semiGermanChords}, @code{\italianChords} and @code{\frenchChords} 
600 set these variables.  The effect is
601 demonstrated here,
602
603 @lilypondfile[raggedright]{chord-names-languages.ly}
604
605 There are also two other chord name schemes implemented: an alternate
606 Jazz chord notation, and a systematic scheme called Banter chords.  The
607 alternate Jazz notation is also shown on the chart in @ref{Chord name
608 chart}.  Turning on these styles is described in the input file
609 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
610
611 @cindex Banter
612 @cindex jazz chords
613 @cindex chords, jazz
614
615
616 @refcommands
617
618 @cindex @code{\germanChords}
619 @code{\germanChords},
620 @cindex @code{\semiGermanChords}
621 @code{\semiGermanChords}.
622 @cindex @code{\italianChords}
623 @code{\italianChords}.
624 @cindex @code{\frenchChords}
625 @code{\frenchChords}.
626
627
628
629
630 @seealso
631
632 Examples: @inputfileref{input/@/regression,chord@/-name@/-major7@/.ly},
633 @inputfileref{input/@/regression,chord@/-name@/-exceptions@/.ly},
634 @inputfileref{input/@/test,chord@/-names@/-jazz@/.ly}.
635
636
637 Init files: @file{scm/@/chords@/-ignatzek@/.scm}, and
638 @file{scm/@/chord@/-entry@/.scm}.
639
640
641 @refbugs
642
643 Chord names are determined solely from the list of pitches.  Chord
644 inversions are not identified, and neither are added bass notes.  This
645 may result in strange chord names when chords are entered with the
646 @code{< .. >} syntax.
647
648
649
650 @node Vocal music
651 @section Vocal music
652
653 There are three different issues when printing vocal music
654
655 @itemize @bullet
656 @item
657 Song texts must be entered as text, not notes.  For example, the
658 input@tie{}@code{d} should be interpreted as a one letter syllable, not the
659 note@tie{}D.
660
661 @item
662 Song texts must be printed as text, not as notes.
663
664 @item
665 Song texts must be aligned with the notes of their melody.
666 @end itemize
667
668 The simplest solution for printing music uses the @code{\addlyrics}
669 function to solve all these problems at once.  However, these
670 three functions can be controlled separately, which is necessary
671 for complex vocal music.
672
673
674 @menu
675 * Setting simple songs::        
676 * Entering lyrics::             
677 * Hyphens and extenders::       
678 * The Lyrics context::          
679 * Flexibility in alignment::    
680 * More stanzas::                
681 * Ambitus::                     
682 * Other vocal issues::          
683 @end menu
684
685 @node Setting simple songs
686 @subsection Setting simple songs
687
688 The easiest way to add lyrics to a melody is to append
689 @cindex \addlyrics
690 @example
691 \addlyrics @{ @var{the lyrics} @}
692 @end example
693
694 @noindent
695 to a melody.  Here is an example,
696
697 @lilypond[raggedright,verbatim,fragment,quote]
698 \time 3/4
699 \relative { c2 e4 g2. }
700 \addlyrics { play the game }
701 @end lilypond
702
703 More stanzas can be added by adding more
704 @code{\addlyrics} sections
705
706 @lilypond[raggedright,verbatim,fragment,quote]
707 \time 3/4
708 \relative { c2 e4 g2. }
709 \addlyrics { play the game }
710 \addlyrics { speel het spel }
711 \addlyrics { joue le jeu }
712 @end lilypond
713
714 @c TODO - this isn't such a great place for this note, but I can't
715 @c  find a better place without rearranging a lot of lyric stuff.
716 @c  It's yet another thing to look at post-3.0.
717
718 The @code{\addlyrics} command is actually just a convienient way
719 to write a more complicated LilyPond structure that sets up the
720 lyrics.  You should use @code{\addlyrics} unless you need to do
721 fancy things, in which case you should investigate
722 @code{\lyricsto} or @code{\lyricmode}.
723
724 @example
725 @{ MUSIC @}
726 \addlyrics @{ LYRICS @}
727 @end example
728
729 @noindent
730 is the same as
731
732 @example
733 \context Voice = blah @{ music @}
734 \lyricsto "blah" \new lyrics @{ LYRICS @}
735 @end example
736
737 @refbugs
738
739 @code{\addlyrics} cannot handle polyphony.
740
741
742 @node Entering lyrics
743 @subsection Entering lyrics
744
745 @cindex lyrics
746 @cindex @code{\lyricmode}
747 @cindex punctuation
748
749 Lyrics are entered in a special input mode.  This mode is introduced
750 by the keyword @code{\lyricmode}, or by using @code{\addlyrics} or
751 @code{\lyricsto}.  In this mode you can enter lyrics,
752 with punctuation and accents, and the input @code{d} is not parsed as
753 a pitch, but rather as a one letter syllable.  Syllables are entered
754 like notes, but with pitches replaced by text.  For example,
755 @example
756 \lyricmode @{ Twin-4 kle4 twin- kle litt- le star2 @}
757 @end example
758
759 There is a difference between @code{\addlyrics} and
760 @code{\lyricmode}.  @code{\addlyrics} and @code{\lyricsto}
761 ignore all durations and aligns syllables to notes; @code{\lyricmode}
762 uses the durations specified.
763
764 A word lyrics mode begins with an alphabetic character, and ends with
765 any space or digit.  The following characters can be any character
766 that is not a digit or white space.  One important consequence of this
767 is that a word can end with @code{@}}.  The following example is
768 usually a mistake in the input file.  The syllable includes a @code{@}}, so the
769 opening brace is not balanced
770 @example
771 \lyricmode @{ twinkle@}
772 @end example
773
774 @cindex @code{\property}, in @code{\lyricmode}
775 @noindent
776 Similarly, a period which follows an alphabetic sequence is included in
777 the resulting string.  As a consequence, spaces must be inserted around
778 property commands
779 @example
780 \override Score . LyricText #'font-shape = #'italic
781 @end example
782
783 @cindex @code{_}
784 @cindex spaces, in lyrics
785 @cindex quotes, in lyrics
786
787 Any @code{_} character that appears in an unquoted word is converted
788 to a space.  This provides a mechanism for introducing spaces into words
789 without using quotes.
790
791 To enter lyrics with characters from non-English languages, or with
792 non-ascii characters (such as the heart symbol or slanted quotes),
793 simply insert the characters directly into the input file and save
794 it with utf-8 encoding.  See @ref{Text encoding} for more info.
795
796 @example
797 \lyricmode @{ He said: “Let my peo ple go”. @}
798 @end example
799
800 The full definition of a word start in Lyrics mode is somewhat more
801 complex.
802
803 A word in Lyrics mode begins with: an alphabetic character, @code{_},
804 @code{?}, @code{!}, @code{:}, @code{'}, the control characters @code{^A}
805 through @code{^F}, @code{^Q} through @code{^W}, @code{^Y}, @code{^^},
806 any 8-bit character with ASCII code over 127, or a two-character
807 combination of a backslash followed by one of @code{`}, @code{'},
808 @code{"}, or @code{^}.
809
810
811
812 @seealso
813
814 Program reference: @internalsref{LyricText}.
815
816 @refbugs
817
818 The definition of lyrics mode is too complex.
819
820 @node Hyphens and extenders
821 @subsection Hyphens and extenders
822
823 @cindex hyphens
824
825 Centered hyphens are entered as `@code{--}' between syllables.
826 The hyphen will have variable length depending on the space between
827 the syllables and it will be centered between the syllables.
828
829 @cindex melisma
830 @cindex extender
831
832 When a lyric is sung over many notes (this is called a melisma), this is
833 indicated with a horizontal line centered between a syllable and the
834 next one.  Such a line is called an extender line, and it is entered as
835 `@code{__}'.
836
837 In tighly engraved music, hyphens can be removed.  In some languages
838 (e.g. German and Hungarian), hyphens should not disappear, since
839 spelling depends on hyphenation.  For that purpose, hyphens can be
840 forced to remain by overriding @code{minimum-length} of
841 the @code{LyricHyphen} grob.
842
843 @lilypond[quote,verbatim,raggedright]
844 \score {
845  <<
846   \new Staff \relative c'' {
847     \time 1/4 c16 c c c c16 c c c c16 c c c
848   }
849   \lyricmode { \new Lyrics
850     \with {
851       \override SeparationItem #'padding = #0.0
852       % Otherwise lyrics are so far apart that hyphens don't disappear
853     } 
854     {
855       An -- ti -- cons -- ti --
856       tu -- tion -- nel -- le --
857       \override LyricHyphen  #'minimum-length = #0.7
858       \override LyricHyphen  #'spacing-procedure =
859         #Hyphen_spanner::set_spacing_rods
860       men -- taire -- ment. ouf~!
861     }
862   }
863  >>
864  \layout   {
865   indent = 0.0 \cm
866   linewidth = 3.4 \cm
867   \context {
868     \Staff \remove "Time_signature_engraver"
869   }
870  }
871 }
872 @end lilypond
873
874 @seealso
875
876 Program reference: @internalsref{LyricHyphen}, @internalsref{LyricExtender}.
877
878
879
880 @node The Lyrics context
881 @subsection The Lyrics context
882
883
884 Lyrics are printed by interpreting them in a @internalsref{Lyrics} context
885 @example
886 \context Lyrics \lyricmode @dots{}
887 @end example
888
889 @cindex automatic syllable durations
890 @cindex @code{\lyricsto}
891 @cindex lyrics and melodies
892
893 This will place the lyrics according to the durations that were
894 entered.  The lyrics can also be aligned under a given melody
895 automatically.  In this case, it is no longer necessary to enter the
896 correct duration for each syllable.  This is achieved by combining the
897 melody and the lyrics with the @code{\lyricsto} expression
898 @example
899 \lyricsto @var{name} \new Lyrics @dots{}
900 @end example
901
902 This aligns the lyrics to the
903 notes of the @internalsref{Voice} context called @var{name}, which has
904 to exist.  Therefore, normally the @code{Voice} is specified first, and
905 then the lyrics are specified with @code{\lyricsto}.  The command
906 @code{\lyricsto} switches to @code{\lyricmode} mode automatically, so the
907 @code{\lyricmode} keyword may be omitted.
908
909 For different or more complex orderings, the best way is to setup the
910 hierarchy of staves and lyrics first, e.g.,
911 @example
912 \context ChoirStaff <<
913   \context Lyrics = sopranoLyrics @{ s1 @}
914   \context Voice = soprano @{ @emph{music} @}
915   \context Lyrics = tenorLyrics @{ s1 @}
916   \context Voice = tenor @{ @emph{music} @}
917 >>
918 @end example
919 and then combine the appropriate melodies and lyric lines
920 @example
921 \lyricsto "soprano" \context Lyrics = sopranoLyrics
922   @emph{the lyrics}
923 @end example
924
925 @noindent
926 The final input would resemble
927
928 @example
929 <<\context ChoirStaff << @emph{setup the music} >>
930   \lyricsto "soprano" @emph{etc}
931   \lyricsto "alto" @emph{etc}
932   @emph{etc}
933 >>
934 @end example
935
936
937 The @code{\lyricsto} command detects melismata: it only puts one
938 syllable under a tied or slurred group of notes.  If you want to force
939 an unslurred group of notes to be a melisma, insert @code{\melisma}
940 after the first note of the group, and @code{\melismaEnd} after the
941 last one, e.g.,
942
943 @lilypond[quote,relative=2,raggedright,fragment,verbatim]
944 <<
945   \context Voice = "lala" {
946     \time 3/4
947     f4 g8
948     \melisma
949     f e f
950     \melismaEnd
951     e2
952   }
953   \lyricsto "lala" \new Lyrics {
954     la di __ daah
955   }
956 >>
957 @end lilypond
958
959 In addition, notes are considered a melisma if they are manually
960 beamed, and automatic beaming (see @ref{Setting automatic beam
961 behavior}) is switched off.
962
963 @ignore
964
965 @c nonformation:
966
967 The criteria for deciding melismata can
968 be tuned with the property @code{melismaBusyProperties}.  See
969 @internalsref{Melisma_translator} in the program reference for more
970 information.
971
972 @end ignore
973
974 Lyrics can also be entered without @code{\lyricsto}.  In this case the
975 duration of each syllable must be entered explicitly, for example,
976
977 @example
978 play2 the4 game2.
979 sink2 or4 swim2.
980 @end example
981
982 The alignment to a melody can be specified with the
983 @code{associatedVoice} property,
984
985 @example
986 \set associatedVoice = #"lala"
987 @end example
988
989 @noindent
990 The value of the property (here: @code{"lala"}) should be the name of
991 a @internalsref{Voice} context.  Without this setting, extender lines
992 will not be formatted properly.
993
994 Here is an example demonstrating manual lyric durations,
995
996 @lilypond[relative=1,raggedright,verbatim,fragment,quote]
997 << \context Voice = melody {
998      \time 3/4
999      c2 e4 g2.
1000   }
1001   \new Lyrics \lyricmode {
1002     \set associatedVoice = #"melody"
1003     play2 the4 game2.
1004   } >>
1005 @end lilypond
1006
1007 @cindex SATB
1008 @cindex choral score
1009
1010 A complete example of a SATB score setup is in section
1011 @ref{Vocal ensembles}.
1012
1013
1014 @refcommands
1015
1016 @code{\melisma}, @code{\melismaEnd}
1017 @cindex @code{\melismaEnd}
1018 @cindex @code{\melisma}
1019
1020 @seealso
1021
1022 Program reference: @internalsref{LyricCombineMusic},
1023 @internalsref{Lyrics}, @internalsref{Melisma_translator}.
1024
1025
1026 @inputfileref{input/@/regression,lyric@/-combine@/-new@/.ly}.
1027 @c TODO: make separate section for melismata
1028
1029 @refbugs
1030
1031 Melismata are not detected automatically, and extender lines must be
1032 inserted by hand.
1033
1034
1035 @c TODO: document \new Staff << Voice \lyricsto >> bug
1036
1037 @node Flexibility in alignment
1038 @subsection Flexibility in alignment
1039
1040 Often, different stanzas of one song are put to one melody in slightly
1041 differing ways.  Such variations can still be captured with
1042 @code{\lyricsto}.
1043
1044 @subsubsection Lyrics to multiple notes of a melisma 
1045
1046
1047 One possibility is that the text has a melisma in one stanza, but
1048 multiple syllables in another one.  One solution is to make the faster
1049 voice ignore the melisma.  This is done by setting
1050 @code{ignoreMelismata} in the Lyrics context.
1051
1052 There has one tricky aspect.  The setting for @code{ignoreMelismata}
1053 must be set one syllable @emph{before} the non-melismatic syllable
1054 in the text, as shown here,
1055
1056 @lilypond[verbatim,raggedright,quote]
1057 <<
1058   \relative \context Voice = "lahlah" {
1059     \set Staff.autoBeaming = ##f
1060     c4
1061     \slurDotted
1062     f8.[( g16])
1063     a4
1064   }
1065   \new Lyrics \lyricsto "lahlah" {
1066     more slow -- ly
1067   }
1068   \new Lyrics \lyricsto "lahlah" {
1069     \set ignoreMelismata = ##t % applies to "fas"
1070     go fas -- ter
1071     \unset ignoreMelismata
1072     still
1073   }
1074 >>
1075 @end lilypond
1076
1077
1078 The @code{ignoreMelismata} applies to the syllable ``fas'', so it
1079 should be entered before ``go''.
1080
1081 The reverse is also possible: making a lyric line slower than the
1082 standard.  This can be achieved by insert @code{\skip}s into the
1083 lyrics.  For every @code{\skip}, the text will be delayed another note.
1084 For example,
1085
1086 @lilypond[verbatim,raggedright,quote]
1087 \relative { c c g' }
1088 \addlyrics {
1089   twin -- \skip 4
1090   kle
1091 }
1092 @end lilypond
1093
1094
1095 @subsection Switching the melody associated with a lyrics line
1096
1097
1098
1099 More complex variations in text underlay are possible.  It is possible
1100 to switch the melody for a line of lyrics during the text.  This is
1101 done by setting the @code{associatedVoice} property.  In the example
1102
1103 @lilypond[raggedright,quote]
1104 <<
1105   \relative \context Voice = "lahlah" {
1106     \set Staff.autoBeaming = ##f
1107     c4
1108     <<
1109       \context Voice = alternative {
1110         \voiceOne
1111         \times 2/3 {
1112           % show associations clearly.
1113           \override NoteColumn #'force-hshift = #-3
1114           f8 f g
1115         }
1116       }
1117       {
1118         \voiceTwo
1119         f8.[ g16]
1120         \oneVoice
1121       } >>
1122     a8( b) c
1123   }
1124   \new Lyrics \lyricsto "lahlah" {
1125     Ju -- ras -- sic Park
1126   }
1127   \new Lyrics \lyricsto "lahlah" {
1128     % Tricky: need to set associatedVoice
1129     % one syllable too soon!
1130     \set associatedVoice = alternative % applies to "ran"
1131     Ty --
1132     ran --
1133     no --
1134     \set associatedVoice = lahlah % applies to "rus"
1135     sau -- rus Rex
1136   } >>
1137 @end lilypond
1138
1139 @noindent
1140 the text for the first stanza is set to a melody called ``lahlah'',
1141
1142 @example
1143 \new Lyrics \lyricsto "lahlah" @{
1144   Ju -- ras -- sic Park
1145 @}
1146 @end example
1147
1148
1149 The second stanza initially is set to the @code{lahlah} context, but
1150 for the syllable ``ran'', it switches to a different melody.
1151 This is achieved with
1152 @example
1153 \set associatedVoice = alternative
1154 @end example
1155
1156 @noindent
1157 Here, @code{alternative} is the name of the @code{Voice} context
1158 containing the triplet.
1159
1160 Again, the command must be one syllable too early, before ``Ty'' in
1161 this case.
1162
1163 @example
1164 \new Lyrics \lyricsto "lahlah" @{
1165   \set associatedVoice = alternative % applies to "ran"
1166   Ty --
1167   ran --
1168   no --
1169   \set associatedVoice = lahlah % applies to "rus"
1170   sau -- rus Rex
1171 @}
1172 @end example
1173
1174 @noindent
1175 The underlay is switched back to the starting situation by assigning
1176 @code{lahlah} to @code{associatedVoice}.
1177
1178
1179
1180 @subsection Specifying melismata within the lyrics
1181
1182 It is also possible to define melismata entirely in the lyrics. This
1183 can be done by entering @code{_} for every note that is part of the
1184 melisma. 
1185
1186 @lilypond[relative=1,verbatim,fragment] 
1187 { \set melismaBusyProperties = #'()
1188   c d( e) f f( e) e e  }
1189 \addlyrics
1190  { Ky -- _ _ ri __ _ _ _  e }
1191 @end lilypond
1192
1193 In this case, you can also have ties and slurs in the melody, if you
1194 set @code{melismaBusyProperties}, as is done in the example above.
1195
1196 @lilypond[relative=1,verbatim,fragment]
1197 {
1198  \set melismaBusyProperties = #'()
1199   c d( e) f f( e) e e
1200 }
1201 \addlyrics
1202  { Ky -- _ _ ri __ _ _ _  e }
1203 @end lilypond
1204
1205
1206 @node More stanzas
1207 @subsection More stanzas
1208
1209 @cindex phrasing, in lyrics
1210
1211
1212 @cindex stanza number
1213 @cindex singer's names
1214 @cindex name of singer
1215
1216 Stanza numbers can be added by setting @code{stanza}, e.g.,
1217
1218 @lilypond[quote,raggedright,verbatim,relative=2,fragment]
1219 \new Voice {
1220   \time 3/4 g2 e4 a2 f4 g2.
1221 } \addlyrics {
1222   \set stanza = "1. "
1223   Hi, my name is Bert.
1224 } \addlyrics {
1225   \set stanza = "2. "
1226   Oh, che -- ri, je t'aime
1227 }
1228 @end lilypond
1229
1230 These numbers are put just before the start of first syllable.
1231
1232 Names of singers can also be added.  They are printed at the start of
1233 the line, just like instrument names.  They are created by setting
1234 @code{vocalName}.  A short version may be entered as @code{vocNam}.
1235
1236
1237 @lilypond[fragment,raggedright,quote,verbatim,relative=2]
1238 \new Voice {
1239   \time 3/4 g2 e4 a2 f4 g2.
1240 } \addlyrics {
1241   \set vocalName = "Bert "
1242   Hi, my name is Bert.
1243 } \addlyrics {
1244   \set vocalName = "Ernie "
1245   Oh, che -- ri, je t'aime
1246 }
1247 @end lilypond
1248
1249 You can display alternate (or divisi) lyrics by naming voice
1250 contexts and attaching lyrics to those specific contexts.
1251
1252 @lilypond[verbatim,raggedright,quote]
1253 \score{ <<
1254   \context Voice = "melody" {
1255     \relative c' {
1256       c4
1257       <<
1258         { \voiceOne c8 e }
1259         \context Voice = splitpart { \voiceTwo c4 }
1260       >>
1261       \oneVoice c4 c | c
1262     }
1263   }
1264   \new Lyrics \lyricsto "melody" { we shall not o- ver- come }
1265   \new Lyrics \lyricsto "splitpart" { will }
1266 >> }
1267 @end lilypond
1268
1269
1270 You can use this trick to display different lyrics for a repeated
1271 section.
1272
1273 @lilypond[verbatim,raggedright,quote]
1274 \score{ <<
1275   \context Voice = melody \relative c' {
1276     c2 e | g e | c1 |
1277     \context Voice = verse \repeat volta 2 {c4 d e f | g1 | }
1278     a2 b | c1}
1279   \lyricsto melody  \context Lyrics = mainlyrics \lyricmode {
1280     do mi sol mi do
1281     la si do }
1282   \lyricsto verse \context Lyrics = mainlyrics \lyricmode {
1283    do re mi fa sol }
1284   \lyricsto verse \context Lyrics = repeatlyrics \lyricmode {
1285    dodo rere mimi fafa solsol }
1286 >>
1287 }
1288 @end lilypond
1289
1290
1291 @seealso
1292
1293 Program reference: @internalsref{LyricText}, @internalsref{StanzaNumber}, @internalsref{VocalName}.
1294
1295
1296
1297 @node Ambitus
1298 @subsection Ambitus
1299 @cindex ambitus
1300
1301 The term @emph{ambitus} denotes a range of pitches for a given voice
1302 in a part of music.  It may also denote the pitch range that a musical
1303 instrument is capable of playing.  Ambits are printed on vocal parts,
1304 so performers can easily determine it meets their capabilities.
1305
1306 Ambits are denoted at the beginning of a piece near the initial clef.
1307 The range is graphically specified by two note heads that represent the
1308 minimum and maximum pitch.  To print such ambits, add the
1309 @internalsref{Ambitus_engraver} to the @internalsref{Voice} context,
1310 for example,
1311
1312 @example
1313 \layout @{
1314   \context @{
1315     \Voice
1316     \consists Ambitus_engraver
1317   @}
1318 @}
1319 @end example
1320
1321 This results in the following output
1322
1323 @lilypond[quote,raggedright]
1324 \layout {
1325   \context {
1326     \Staff
1327     \consists Ambitus_engraver
1328   }
1329 }
1330
1331 \relative \new Staff {
1332   as'' c e2 cis,2
1333 }
1334 @end lilypond
1335
1336 If you have multiple voices in a single staff and you want a single
1337 ambitus per staff rather than per each voice, add the
1338 @internalsref{Ambitus_engraver} to the @internalsref{Staff} context
1339 rather than to the @internalsref{Voice} context.  Here is an example,
1340
1341 @lilypond[verbatim,raggedright,quote]
1342 \new Staff \with {
1343   \consists "Ambitus_engraver"
1344 }
1345 <<
1346   \new Voice \with {
1347     \remove "Ambitus_engraver"
1348   } \relative c'' {
1349     \override Ambitus #'X-offset-callbacks
1350       = #(list (lambda (grob axis) -1.0))
1351     \voiceOne
1352     c4 a d e f2
1353   }
1354   \new Voice \with {
1355     \remove "Ambitus_engraver"
1356   } \relative c' {
1357     \voiceTwo
1358     es4 f g as b2
1359   }
1360 >>
1361 @end lilypond
1362
1363 @noindent
1364 This example uses one advanced feature,
1365
1366 @example
1367 \override Ambitus #'X-offset-callbacks
1368   = #(list (lambda (grob axis) -1.0))
1369 @end example
1370
1371 @noindent
1372 This code moves the ambitus to the left.  The same effect could have
1373 been achieved with @code{extra-offset}, but then the formatting system
1374 would not reserve space for the moved object.
1375
1376 @seealso
1377
1378 Program reference: @internalsref{Ambitus},
1379 @internalsref{AmbitusLine}, @internalsref{AmbitusNoteHead},
1380 @internalsref{AmbitusAccidental}.
1381
1382 Examples: @inputfileref{input/@/regression,ambitus@/.ly}.
1383
1384 @refbugs
1385
1386 There is no collision handling in the case of multiple per-voice
1387 ambitus.
1388
1389
1390 @node Other vocal issues
1391 @subsection Other vocal issues
1392
1393 Bagpipe music nominally uses the key of D Major (even though that 
1394 isn't really true). However, since that is the only key that can be used, 
1395 the key signature is normally not written out. To set this up correctly, 
1396 always start your music with @code{\hideKeySignature}. If you for some 
1397 reason want to show the key signature, you can use @code{\showKeySignature}
1398 instead.
1399
1400 @ignore
1401 yeah, I'm giving up somewhat by stuffing a bunch of things in
1402 here.  But at least they're in the manual now; it's easier to
1403 move them around in the manual once they're already here.
1404
1405 Besides, if users complain about everything stuffed in here, I
1406 can ask them for specific instructions about where to move these
1407 examples, and that might get them more involved in the docs.  -gp
1408 @end ignore
1409
1410 ``Parlato'' is spoken without pitch but still with rhythm; it is
1411 notated by cross noteheads.  This is demonstrated in
1412 @ref{Special noteheads}.
1413
1414 Some modern music use cross fingering on c and f to flatten those notes.
1415 This can be indicated by @code{cflat} or @code{fflat}. Similarly, the
1416 piobaireachd high g can be written @code{gflat} when it occurs in light 
1417 music.
1418
1419 @node Rhythmic music
1420 @section Rhythmic music
1421
1422 Rhythmic music is primarily used for percussion and drum notation, but it can
1423 also be used to show the rhythms of melodies.
1424
1425 @menu
1426 * Showing melody rhythms::      
1427 * Entering percussion::         
1428 * Percussion staves::           
1429 @end menu
1430
1431
1432 @node Showing melody rhythms
1433 @subsection Showing melody rhythms
1434
1435 Sometimes you might want to show only the rhythm of a melody.  This
1436 can be done with the rhythmic staff.  All pitches of notes on such a
1437 staff are squashed, and the staff itself has a single line
1438
1439 @lilypond[quote,raggedright,fragment,relative=1,verbatim]
1440 \context RhythmicStaff {
1441   \time 4/4
1442   c4 e8 f g2 | r4 g r2 | g1:32 | r1 |
1443 }
1444 @end lilypond
1445
1446 @seealso
1447
1448 Program reference: @internalsref{RhythmicStaff}.
1449
1450 Examples: @inputfileref{input/@/regression,rhythmic@/-staff@/.ly}.
1451
1452
1453 @node Entering percussion
1454 @subsection Entering percussion
1455
1456 @cindex percussion
1457 @cindex drums
1458
1459
1460 Percussion notes may be entered in @code{\drummode} mode, which is
1461 similar to the standard mode for entering notes.  Each piece of
1462 percussion has a full name and an abbreviated name, and both can be used
1463 in input files
1464
1465 @lilypond[quote,raggedright,verbatim]
1466 \drums {
1467   hihat hh bassdrum bd
1468 }
1469 @end lilypond
1470
1471 The complete list of drum names is in the init file
1472 @file{ly/@/drumpitch@/-init@/.ly}.
1473 @c TODO: properly document this.
1474
1475 @seealso
1476
1477 Program reference: @internalsref{note-event}.
1478
1479 @node Percussion staves
1480 @subsection Percussion staves
1481 @cindex percussion
1482 @cindex drums
1483
1484 A percussion part for more than one instrument typically uses a
1485 multiline staff where each position in the staff refers to one piece
1486 of percussion.
1487
1488
1489 To typeset the music, the notes must be interpreted in a
1490 @internalsref{DrumStaff} and @internalsref{DrumVoice} contexts
1491
1492 @lilypond[quote,raggedright,verbatim]
1493 up = \drummode { crashcymbal4 hihat8 halfopenhihat hh hh hh openhihat }
1494 down = \drummode { bassdrum4 snare8 bd r bd sn4 }
1495   \new DrumStaff <<
1496     \new DrumVoice { \voiceOne \up }
1497     \new DrumVoice { \voiceTwo \down }
1498   >>
1499 @end lilypond
1500
1501 The above example shows verbose polyphonic notation.  The short
1502 polyphonic notation, described in @ref{Polyphony}, can also be used if
1503 the @internalsref{DrumVoice}s are instantiated by hand first.  For example,
1504
1505 @lilypond[quote,raggedright,fragment,verbatim]
1506 \new DrumStaff <<
1507   \context DrumVoice = "1" { s1 *2 }
1508   \context DrumVoice = "2" { s1 *2 }
1509   \drummode {
1510     bd4 sn4 bd4 sn4
1511     <<
1512       { \repeat unfold 16 hh16 }
1513       \\
1514       { bd4 sn4 bd4 sn4 }
1515     >>
1516   }
1517 >>
1518 @end lilypond
1519
1520
1521 There are also other layout possibilities.  To use these, set the
1522 property @code{drumStyleTable} in context @internalsref{DrumVoice}.
1523 The following variables have been predefined
1524
1525 @table @code
1526 @item drums-style
1527 This is the default.  It typesets a typical drum kit on a five-line staff
1528
1529 @lilypond[quote,linewidth=10.0\cm]
1530 nam = \lyricmode {
1531   cymc cyms cymr hh hhc hho hhho hhp
1532   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl }
1533 mus = \drummode {
1534   cymc cyms cymr hh hhc hho hhho hhp \break
1535   cb hc bd sn ss tomh tommh tomml toml tomfh tomfl s16 }
1536 \score {
1537   << \new DrumStaff \with {
1538        \remove Bar_engraver
1539        \remove Time_signature_engraver
1540        \override Stem #'transparent = ##t
1541        \override Stem #'Y-extent-callback = ##f
1542        minimumVerticalExtent = #'(-4.0 . 5.0)
1543      } \mus
1544      \context Lyrics \nam
1545   >>
1546   \layout {
1547     \context {
1548       \Score
1549       \override LyricText #'font-family = #'typewriter
1550       \override BarNumber #'transparent =##T
1551     }
1552   }
1553 }
1554 @end lilypond
1555
1556 The drum scheme supports six different toms.  When there are fewer toms,
1557 simply select the toms that produce the desired result, i.e., to get toms
1558 on the three middle lines you use @code{tommh}, @code{tomml}, and
1559 @code{tomfh}.
1560
1561 @item timbales-style
1562 This typesets timbales on a two line staff
1563
1564 @lilypond[quote,raggedright]
1565 nam = \lyricmode { timh ssh timl ssl cb }
1566 mus = \drummode { timh ssh timl ssl cb s16 }
1567
1568 <<
1569   \context DrumStaff \with {
1570     \remove Bar_engraver
1571     \remove Time_signature_engraver
1572     \override Stem #'transparent = ##t
1573     \override Stem #'Y-extent-callback = ##f
1574     \override StaffSymbol #'line-count = #2
1575     \override StaffSymbol #'staff-space = #2
1576     minimumVerticalExtent = #'(-3.0 . 4.0)
1577     drumStyleTable = #timbales-style
1578   } \mus
1579   \context Lyrics {
1580     \override LyricText #'font-family = #'typewriter
1581     \nam
1582   }
1583 >>
1584 @end lilypond
1585
1586 @item congas-style
1587 This typesets congas on a two line staff
1588
1589 @lilypond[quote,raggedright]
1590 nam = \lyricmode { cgh cgho cghm ssh cgl cglo cglm ssl }
1591 mus = \drummode { cgh cgho cghm ssh cgl cglo cglm ssl s16 }
1592
1593 <<
1594   \context DrumStaff \with {
1595     \remove Bar_engraver
1596     \remove Time_signature_engraver
1597     drumStyleTable = #congas-style
1598     \override StaffSymbol #'line-count = #2
1599
1600     %% this sucks; it will lengthen stems.
1601     \override StaffSymbol #'staff-space = #2
1602     \override Stem #'transparent = ##t
1603     \override Stem #'Y-extent-callback = ##f
1604   } \mus
1605   \context Lyrics {
1606     \override LyricText #'font-family = #'typewriter
1607     \nam
1608   }
1609 >>
1610 @end lilypond
1611
1612 @item bongos-style
1613 This typesets bongos on a two line staff
1614
1615 @lilypond[quote,raggedright]
1616 nam = \lyricmode { boh boho bohm ssh bol bolo bolm ssl }
1617 mus = \drummode { boh boho bohm ssh bol bolo bolm ssl s16 }
1618
1619 <<
1620   \context DrumStaff\with {
1621     \remove Bar_engraver
1622     \remove Time_signature_engraver
1623     \override StaffSymbol #'line-count = #2
1624     drumStyleTable = #bongos-style
1625
1626     %% this sucks; it will lengthen stems.
1627     \override StaffSymbol #'staff-space = #2
1628     \override Stem #'transparent = ##t
1629     \override Stem #'Y-extent-callback = ##f
1630   } \mus
1631   \context Lyrics {
1632     \override LyricText #'font-family = #'typewriter
1633     \nam
1634   }
1635 >>
1636 @end lilypond
1637
1638 @item percussion-style
1639 To typeset all kinds of simple percussion on one line staves.
1640
1641 @lilypond[quote,raggedright]
1642 nam = \lyricmode { tri trio trim gui guis guil cb cl tamb cab mar hc }
1643 mus = \drummode { tri trio trim gui guis guil cb cl tamb cab mar hc s16 }
1644
1645 <<
1646   \context DrumStaff\with{
1647     \remove Bar_engraver
1648     drumStyleTable = #percussion-style
1649     \override StaffSymbol #'line-count = #1
1650     \remove Time_signature_engraver
1651     \override Stem #'transparent = ##t
1652     \override Stem #'Y-extent-callback = ##f
1653   } \mus
1654   \context Lyrics {
1655     \override LyricText #'font-family = #'typewriter
1656     \nam
1657   }
1658 >>
1659 @end lilypond
1660 @end table
1661
1662 If you do not like any of the predefined lists you can define your own
1663 list at the top of your file
1664
1665 @lilypond[quote,raggedright,verbatim]
1666 #(define mydrums '(
1667          (bassdrum     default   #f         -1)
1668          (snare        default   #f         0)
1669          (hihat        cross     #f         1)
1670          (pedalhihat   xcircle   "stopped"  2)
1671          (lowtom       diamond   #f         3)))
1672 up = \drummode { hh8 hh hh hh hhp4 hhp }
1673 down = \drummode { bd4 sn bd toml8 toml }
1674
1675 \new DrumStaff <<
1676   \set DrumStaff.drumStyleTable = #(alist->hash-table mydrums)
1677   \new DrumVoice { \voiceOne \up }
1678   \new DrumVoice { \voiceTwo \down }
1679 >>
1680 @end lilypond
1681
1682
1683 @seealso
1684
1685 Init files: @file{ly/@/drumpitch@/-init@/.ly}.
1686
1687 Program reference: @internalsref{DrumStaff}, @internalsref{DrumVoice}.
1688
1689 @refbugs
1690
1691 Because general MIDI does not contain rim shots, the sidestick is used
1692 for this purpose instead.
1693
1694
1695
1696 @node Guitar
1697 @section Guitar
1698
1699 @cindex tablature
1700 @cindex guitar tablature
1701
1702 @menu
1703 * String number indications::   
1704 * Tablatures basic::            
1705 * Non-guitar tablatures::       
1706 * Fret diagrams::               
1707 * Other guitar issues::         
1708 @end menu
1709
1710 @node String number indications
1711 @subsection String number indications
1712
1713 @cindex String numbers
1714
1715 String numbers can be added to chords, by indicating the string number
1716 with @code{\}@var{number}, 
1717
1718 @lilypond[relative,relative=1,raggedright,fragment]
1719 <c\1 e\2 g\3>
1720 @end lilypond
1721
1722 See also @inputfileref{input/regression,string-number.ly}.
1723
1724
1725 @seealso
1726
1727 Program reference: @internalsref{StringNumber}.
1728
1729
1730 @node Tablatures basic
1731 @subsection Tablatures basic
1732 @cindex Tablatures basic
1733
1734 Tablature notation is used for notating music for plucked string
1735 instruments.  Pitches are not denoted with note heads, but by
1736 numbers indicating on which string and fret a note must be played.  LilyPond
1737 offers limited support for tablature.
1738
1739 The string number associated to a note is given as a backslash
1740 followed by a number, e.g., @code{c4\3} for a C quarter on the third
1741 string.  By default, string 1 is the highest one, and the tuning
1742 defaults to the standard guitar tuning (with 6 strings).  The notes
1743 are printed as tablature, by using @internalsref{TabStaff} and
1744 @internalsref{TabVoice} contexts
1745
1746 @lilypond[quote,raggedright,fragment,verbatim]
1747 \context TabStaff {
1748   a,4\5 c'\2 a\3 e'\1
1749   e\4 c'\2 a\3 e'\1
1750 }
1751 @end lilypond
1752
1753 @cindex @code{minimumFret}
1754 @cindex fret
1755
1756 When no string is specified, the first string that does not give a
1757 fret number less than @code{minimumFret} is selected.  The default
1758 value for @code{minimumFret} is 0
1759
1760
1761 @example
1762 e16 fis gis a b4
1763 \set TabStaff.minimumFret = #8
1764 e16 fis gis a b4
1765 @end example
1766 @lilypond[quote,raggedright]
1767 frag = {
1768   \key e \major
1769   e16 fis gis a b4
1770   \set TabStaff.minimumFret = #8
1771   e16 fis gis a b4
1772 }
1773   \context StaffGroup <<
1774     \context Staff { \clef "G_8" \frag }
1775     \context TabStaff { \frag }
1776   >>
1777 @end lilypond
1778
1779 @seealso
1780
1781 Program reference: @internalsref{TabStaff}, @internalsref{TabVoice}.
1782
1783 @refbugs
1784
1785 Chords are not handled in a special way, and hence the automatic
1786 string selector may easily select the same string to two notes in a
1787 chord.
1788
1789
1790 @node Non-guitar tablatures
1791 @subsection Non-guitar tablatures
1792 @cindex Non-guitar tablatures
1793
1794 You can change the number of strings, by setting the number of lines
1795 in the @internalsref{TabStaff}.
1796
1797 You can change the tuning of the strings.  A string tuning is given as
1798 a Scheme list with one integer number for each string, the number
1799 being the pitch (measured in semitones relative to middle C) of an
1800 open string.  The numbers specified for @code{stringTuning} are the
1801 numbers of semitones to subtract or add, starting the specified pitch
1802 by default middle C, in string order.  In the next example,
1803 @code{stringTunings} is set for the pitches e, a, d, and g
1804
1805 @lilypond[quote,raggedright,fragment,verbatim]
1806 \context TabStaff <<
1807   \set TabStaff.stringTunings = #'(-5 -10 -15 -20)
1808   {
1809     a,4 c' a e' e c' a e'
1810   }
1811 >>
1812 @end lilypond
1813
1814 @refbugs
1815
1816 No guitar special effects have been implemented.
1817
1818 @seealso
1819
1820 Program reference: @internalsref{Tab_note_heads_engraver}.
1821
1822
1823 @node Fret diagrams
1824 @subsection Fret diagrams
1825 @cindex fret diagrams
1826 @cindex chord diagrams
1827
1828 Fret diagrams can be added to music as a markup to the desired note.  The
1829 markup contains information about the desired fret diagram, as shown in the
1830 following example
1831
1832 @lilypond[verbatim, raggedright, quote]
1833 \context Voice {
1834   d'^\markup \fret-diagram #"6-x;5-x;4-o;3-2;2-3;1-2;"
1835   d' d' d'
1836   fis'^\markup \override #'(size . 0.75) {
1837     \override #'(finger-code . below-string) {
1838       \fret-diagram-verbose #'((place-fret 6 2 1) (barre 6 1 2)
1839                                (place-fret 5 4 3) (place-fret 4 4 4)
1840                                (place-fret 3 3 2) (place-fret 2 2 1)
1841                                (place-fret 1 2 1))
1842     }
1843   }
1844   fis' fis' fis'
1845   c'^\markup \override #'(dot-radius . 0.35) {
1846     \override #'(finger-code . in-dot) {
1847       \override #'(dot-color . white) {
1848         \fret-diagram-terse #"x;3-1-(;5-2;5-3;5-4;3-1-);"
1849       }
1850     }
1851   }
1852   c' c' c'
1853 }
1854 @end lilypond
1855
1856
1857 There are three different fret-diagram markup interfaces: standard, terse,
1858 and verbose.  The three interfaces produce equivalent markups, but have
1859 varying amounts of information in the markup string.  Details about the
1860 markup interfaces are found at @ref{Overview of text markup commands}.
1861
1862 You can set a number of graphical properties according to your preference.
1863 Details about the property interface to fret diagrams are found at
1864 @internalsref{fret-diagram-interface}.
1865
1866
1867 @seealso
1868
1869 Examples: @inputfileref{input/@/test,fret@/-diagram@/.ly}
1870
1871
1872 @node Other guitar issues
1873 @subsection Other guitar issues
1874
1875 This example demonstrates how to include guitar position and
1876 barring indications.
1877
1878 @lilypond[quote,raggedright,fragment,verbatim,relative=0]
1879 \clef "G_8"
1880 b16 d16 g16 b16 e16
1881 \textSpannerDown
1882 \override TextSpanner #'edge-text = #'("XII " . "")
1883   g16\startTextSpan
1884   b16 e16 g16 e16 b16 g16\stopTextSpan
1885 e16 b16 g16 d16
1886 @end lilypond
1887
1888
1889 Stopped (X) note heads are used in guitar music to signal a place where the 
1890 guitarist must play a certain note or chord, with its fingers just 
1891 touching the strings instead of fully pressing them.  This gives the sound a 
1892 percussive noise-like sound that still maintains part of the original
1893 pitch.  It is notated with cross noteheads; this is
1894 demonstrated in @ref{Special noteheads}.
1895
1896
1897 @node Bagpipe
1898 @section Bagpipe
1899
1900 @cindex Bagpipe
1901
1902 @menu
1903 * Bagpipe definitions::         
1904 * Bagpipe example::             
1905 @end menu
1906
1907
1908 @node Bagpipe definitions
1909 @subsection Bagpipe definitions
1910
1911 LilyPond contains special definitions for music for the Scottish
1912 highland bagpipe; to use them, add
1913
1914 @example
1915 \include "bagpipe.ly"
1916 @end example
1917
1918 @noindent
1919 at the top of your input file.  This lets you add the special gracenotes
1920 common to bagpipe music with short commands.  For example, you could
1921 write @code{\taor} instead of
1922
1923 @example
1924 \grace @{ \small G32[ d G e] @}
1925 @end example
1926
1927 @code{bagpipe.ly} also contains pitch definitions for the bagpipe
1928 notes in the appropiate octaves, so you do not need to worry about
1929 @code{\relative} or @code{\transpose}.
1930
1931 @ignore
1932 @lilypond[raggedright,verbatim,quote,notime]
1933 \include "bagpipe.ly"
1934 { \grg G4 \grg a \grg b \grg c \grg d \grg e \grg f \grA g A }
1935 @end lilypond
1936 @end ignore
1937
1938
1939 @node Bagpipe example
1940 @subsection Bagpipe example
1941
1942 This is what the well known tune Amazing Grace looks like in bagpipe
1943 notation.
1944
1945 @ignore
1946 @lilypond[raggedright,verbatim,quote]
1947 \include "bagpipe.ly"
1948 \layout {
1949   indent = 0.0\cm
1950   \context { \Score \remove "Bar_number_engraver" }
1951 }
1952 \header {
1953   title = "Amazing Grace"
1954   meter = "Hymn"
1955   arranger = "Trad. arr."
1956 }
1957 {
1958   \hideKeySignature
1959   \time 3/4
1960   \grg \partial 4 a8. d16 
1961   \slurd d2 \grg f8[ e32 d16.]
1962   \grg f2 \grg f8 e
1963   \thrwd d2 \grg b4
1964   \grG a2 \grg a8. d16
1965   \slurd d2 \grg f8[ e32 d16.]
1966   \grg f2 \grg e8. f16
1967   \dblA A2 \grg A4
1968   \grg A2 f8. A16
1969   \grg A2 \hdblf f8[ e32 d16.]
1970   \grg f2 \grg f8 e
1971   \thrwd d2 \grg b4
1972   \grG a2 \grg a8. d16
1973   \slurd d2 \grg f8[ e32 d16.]
1974   \grg f2 e4
1975   \thrwd d2.
1976   \slurd d2
1977   \bar "|."
1978 }
1979 @end lilypond
1980 @end ignore
1981
1982
1983 @node Ancient notation
1984 @section Ancient notation
1985
1986 @cindex Vaticana, Editio
1987 @cindex Medicaea, Editio
1988 @cindex hufnagel
1989 @cindex Petrucci
1990 @cindex mensural
1991
1992 Support for ancient notation includes features for mensural notation
1993 and Gregorian Chant notation.  There is also limited support for
1994 figured bass notation.
1995
1996 Many graphical objects provide a @code{style} property, see
1997 @itemize @bullet
1998 @item
1999 @ref{Ancient note heads},
2000 @item
2001 @ref{Ancient accidentals},
2002 @item
2003 @ref{Ancient rests},
2004 @item
2005 @ref{Ancient clefs},
2006 @item
2007 @ref{Ancient flags},
2008 @item
2009 @ref{Ancient time signatures}.
2010 @end itemize
2011
2012 By manipulating such a grob property, the typographical appearance of
2013 the affected graphical objects can be accommodated for a specific
2014 notation flavor without the need for introducing any new notational
2015 concept.
2016
2017 In addition to the standard articulation signs described in section
2018 @ref{Articulations}, specific articulation signs for ancient notation
2019 are provided.
2020
2021 @itemize @bullet
2022 @item
2023 @ref{Ancient articulations}
2024 @end itemize
2025
2026 Other aspects of ancient notation can not that easily be expressed
2027 in terms of just changing a style property of a graphical object or
2028 adding articulation signs.  Some notational concepts are introduced
2029 specifically for ancient notation,
2030
2031 @itemize @bullet
2032 @item
2033 @ref{Custodes},
2034 @item
2035 @ref{Divisiones},
2036 @item
2037 @ref{Ligatures}.
2038 @end itemize
2039
2040 If this all is too much of documentation for you, and you just want to
2041 dive into typesetting without worrying too much about the details on
2042 how to customize a context, you may have a look at the predefined
2043 contexts.  Use them to set up predefined style-specific voice and
2044 staff contexts, and directly go ahead with the note entry,
2045
2046 @itemize @bullet
2047 @item
2048 @ref{Gregorian Chant contexts},
2049 @item
2050 @ref{Mensural contexts}.
2051 @end itemize
2052
2053 There is limited support for figured bass notation which came
2054 up during the baroque period.
2055
2056 @itemize @bullet
2057 @item
2058 @ref{Figured bass}
2059 @end itemize
2060
2061 Here are all suptopics at a glance:
2062
2063 @menu
2064 * Ancient note heads::          
2065 * Ancient accidentals::         
2066 * Ancient rests::               
2067 * Ancient clefs::               
2068 * Ancient flags::               
2069 * Ancient time signatures::     
2070 * Ancient articulations::       
2071 * Custodes::                    
2072 * Divisiones::                  
2073 * Ligatures::                   
2074 * Gregorian Chant contexts::    
2075 * Mensural contexts::           
2076 * Musica ficta accidentals::    
2077 * Figured bass::                
2078 @end menu
2079
2080
2081
2082 @node Ancient note heads
2083 @subsection Ancient note heads
2084
2085 @cindex note heads
2086
2087
2088 For ancient notation, a note head style other than the @code{default}
2089 style may be chosen.  This is accomplished by setting the @code{style}
2090 property of the @internalsref{NoteHead} object to @code{baroque},
2091 @code{neomensural}, @code{mensural} or @code{petrucci}.  The
2092 @code{baroque} style differs from the @code{default} style only in
2093 using a square shape for @code{\breve} note heads.  The
2094 @code{neomensural} style differs from the @code{baroque} style in that
2095 it uses rhomboidal heads for whole notes and all smaller durations.
2096 Stems are centered on the note heads.  This style is particularly
2097 useful when transcribing mensural music, e.g., for the incipit.  The
2098 @code{mensural} style produces note heads that mimic the look of note
2099 heads in historic printings of the 16th century.  Finally, the
2100 @code{petrucci} style also mimicks historic printings, but uses bigger
2101 note heads.
2102
2103 The following example demonstrates the @code{neomensural} style
2104
2105 @lilypond[quote,fragment,raggedright,verbatim]
2106 \set Score.skipBars = ##t
2107 \override NoteHead #'style = #'neomensural
2108 a'\longa a'\breve a'1 a'2 a'4 a'8 a'16
2109 @end lilypond
2110
2111 When typesetting a piece in Gregorian Chant notation, the
2112 @internalsref{Gregorian_ligature_engraver} will automatically select
2113 the proper note heads, so there is no need to explicitly set the
2114 note head style.  Still, the note head style can be set, e.g., to
2115 @code{vaticana_punctum} to produce punctum neumes.  Similarly, a
2116 @internalsref{Mensural_ligature_engraver} is used to automatically
2117 assemble mensural ligatures.  See @ref{Ligatures} for how ligature
2118 engravers work.
2119
2120 @seealso
2121
2122 Examples: @inputfileref{input/@/regression,note@/-head@/-style@/.ly} gives an
2123 overview over all available note head styles.
2124
2125
2126 @node Ancient accidentals
2127 @subsection Ancient accidentals
2128
2129 @cindex accidentals
2130
2131
2132 Use the @code{style} property of grob @internalsref{Accidental} to
2133 select ancient accidentals.   Supported styles are
2134 @code{mensural}, @code{vaticana}, @code{hufnagel}, and @code{medicaea}.
2135
2136 @lilypond[quote,raggedright,staffsize=26]
2137 \score {
2138 {
2139   \fatText
2140   s^\markup {
2141     \column {
2142       "vaticana"
2143       \line { " " \musicglyph #"accidentals.vaticana-1"
2144         " " \musicglyph #"accidentals.vaticana0" }
2145     }
2146     \column {
2147       "medicaea"
2148       \line { " " \musicglyph #"accidentals.medicaea-1" }
2149     }
2150     \column {
2151       "hufnagel"
2152       \line { " " \musicglyph #"accidentals.hufnagel-1" }
2153     }
2154     \column {
2155       "mensural"
2156       \line { " " \musicglyph #"accidentals.mensural-1"
2157         " " \musicglyph #"accidentals.mensural1" }
2158     }
2159   }
2160 }
2161 \layout {
2162   interscoreline = 1
2163   \context { \Score \remove "Bar_number_engraver" }
2164   \context { \Staff
2165       \remove "Clef_engraver"
2166       \remove "Key_engraver"
2167       \remove "Time_signature_engraver"
2168       \remove "Staff_symbol_engraver"
2169       minimumVerticalExtent = ##f
2170     }
2171   }
2172 }
2173 @end lilypond
2174
2175 As shown, not all accidentals are supported by each style.  When
2176 trying to access an unsupported accidental, LilyPond will switch to a
2177 different style, as demonstrated in
2178 @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
2179
2180 Similarly to local accidentals, the style of the key signature can be
2181 controlled by the @code{style} property of the
2182 @internalsref{KeySignature} grob.
2183
2184 @seealso
2185
2186 In this manual: @ref{Pitches}, @ref{Cautionary accidentals} and
2187 @ref{Automatic accidentals} give a general introduction of the use of
2188 accidentals.  @ref{Key signature} gives a general introduction of
2189 the use of key signatures.
2190
2191 Program reference: @internalsref{KeySignature}.
2192
2193 Examples: @inputfileref{input/@/test,ancient@/-accidentals@/.ly}.
2194
2195 @node Ancient rests
2196 @subsection Ancient rests
2197
2198 @cindex rests, ancient
2199
2200
2201 Use the @code{style} property of grob @internalsref{Rest} to select
2202 ancient rests.   Supported styles are @code{classical},
2203 @code{neomensural}, and @code{mensural}.  @code{classical} differs
2204 from the @code{default} style only in that the quarter rest looks like
2205 a horizontally mirrored 8th rest.  The @code{neomensural} style suits
2206 well for, e.g., the incipit of a transcribed mensural piece of music.
2207 The @code{mensural} style finally mimics the appearance of rests as
2208 in historic prints of the 16th century.
2209
2210 The following example demonstrates the @code{neomensural} style
2211
2212 @lilypond[quote,fragment,raggedright,verbatim]
2213 \set Score.skipBars = ##t
2214 \override Rest #'style = #'neomensural
2215 r\longa r\breve r1 r2 r4 r8 r16
2216 @end lilypond
2217
2218 There are no 32th and 64th rests specifically for the mensural or
2219 neo-mensural style.  Instead, the rests from the default style will be
2220 taken.  See @inputfileref{input/@/test,rests@/.ly} for a chart of all
2221 rests.
2222
2223 There are no rests in Gregorian Chant notation; instead, it uses
2224 @ref{Divisiones}.
2225
2226 @seealso
2227
2228 In this manual: @ref{Rests} gives a general introduction into the use of rests.
2229
2230
2231 @node Ancient clefs
2232 @subsection Ancient clefs
2233
2234 @cindex clefs
2235
2236
2237 LilyPond supports a variety of clefs, many of them ancient.
2238
2239 The following table shows all ancient clefs that are supported via the
2240 @code{\clef} command.  Some of the clefs use the same glyph, but
2241 differ only with respect to the line they are printed on.  In such
2242 cases, a trailing number in the name is used to enumerate these clefs.
2243 Still, you can manually force a clef glyph to be typeset on an
2244 arbitrary line, as described in @ref{Clef}.  The note printed to the
2245 right side of each clef in the example column denotes the @code{c'}
2246 with respect to that clef.
2247
2248 @multitable @columnfractions .4 .4 .2
2249 @item
2250 @b{Description}
2251 @tab
2252 @b{Supported Clefs}
2253 @tab
2254 @b{Example}
2255
2256 @item
2257 modern style mensural C clef
2258 @tab
2259 @code{neomensural-c1}, @code{neomensural-c2},@*
2260 @code{neomensural-c3}, @code{neomensural-c4}
2261 @tab
2262 @lilypond[fragment,relative=1,notime]
2263   \clef "neomensural-c2" c
2264 @end lilypond
2265
2266 @item
2267 petrucci style mensural C clefs, for use on different staff lines
2268 (the examples show the 2nd staff line C clef)
2269 @tab
2270 @code{petrucci-c1}, @code{petrucci-c2},@*
2271 @code{petrucci-c3}, @code{petrucci-c4},@*
2272 @code{petrucci-c5}
2273 @tab
2274 @lilypond[fragment,relative=1,notime]
2275   \clef "petrucci-c2"
2276   \override NoteHead #'style = #'mensural
2277   c
2278 @end lilypond
2279
2280 @item
2281 petrucci style mensural F clef
2282 @tab
2283 @code{petrucci-f}
2284 @tab
2285 @lilypond[fragment,relative=1,notime]
2286   \clef "petrucci-f"
2287   \override NoteHead #'style = #'mensural
2288   c
2289 @end lilypond
2290
2291 @item
2292 petrucci style mensural G clef
2293 @tab
2294 @code{petrucci-g}
2295 @tab
2296 @lilypond[fragment,relative=1,notime]
2297   \clef "petrucci-g"
2298   \override NoteHead #'style = #'mensural
2299   c
2300 @end lilypond
2301
2302 @item
2303 historic style mensural C clef
2304 @tab
2305 @code{mensural-c1}, @code{mensural-c2},@*
2306 @code{mensural-c3}, @code{mensural-c4}
2307 @tab
2308 @lilypond[fragment,relative=1,notime]
2309   \clef "mensural-c2"
2310   \override NoteHead #'style = #'mensural
2311   c
2312 @end lilypond
2313
2314 @item
2315 historic style mensural F clef
2316 @tab
2317 @code{mensural-f}
2318 @tab
2319 @lilypond[fragment,relative=1,notime]
2320   \clef "mensural-f"
2321   \override NoteHead #'style = #'mensural
2322   c
2323 @end lilypond
2324
2325 @item
2326 historic style mensural G clef
2327 @tab
2328 @code{mensural-g}
2329 @tab
2330 @lilypond[fragment,relative=1,notime]
2331   \clef "mensural-g"
2332   \override NoteHead #'style = #'mensural
2333   c
2334 @end lilypond
2335
2336 @item
2337 Editio Vaticana style do clef
2338 @tab
2339 @code{vaticana-do1}, @code{vaticana-do2},@*
2340 @code{vaticana-do3}
2341 @tab
2342 @lilypond[fragment,relative=1,notime]
2343   \override Staff.StaffSymbol #'line-count = #4
2344   \override Staff.StaffSymbol #'color = #red
2345   \override Staff.LedgerLineSpanner #'color = #red
2346   \override Voice.Stem #'transparent = ##t
2347   \override NoteHead #'style = #'vaticana.punctum
2348   \clef "vaticana-do2"
2349   c
2350 @end lilypond
2351
2352 @item
2353 Editio Vaticana style fa clef
2354 @tab
2355 @code{vaticana-fa1}, @code{vaticana-fa2}
2356 @tab
2357 @lilypond[fragment,relative=1,notime]
2358   \override Staff.StaffSymbol #'line-count = #4
2359   \override Staff.StaffSymbol #'color = #red
2360   \override Staff.LedgerLineSpanner #'color = #red
2361   \override Voice.Stem #'transparent = ##t
2362   \override NoteHead #'style = #'vaticana.punctum
2363   \clef "vaticana-fa2"
2364   c
2365 @end lilypond
2366
2367 @item
2368 Editio Medicaea style do clef
2369 @tab
2370 @code{medicaea-do1}, @code{medicaea-do2},@*
2371 @code{medicaea-do3}
2372 @tab
2373 @lilypond[fragment,relative=1,notime]
2374   \override Staff.StaffSymbol #'line-count = #4
2375   \override Staff.StaffSymbol #'color = #red
2376   \override Staff.LedgerLineSpanner #'color = #red
2377   \override Voice.Stem #'transparent = ##t
2378   \override NoteHead #'style = #'medicaea.punctum
2379   \clef "medicaea-do2"
2380   c
2381 @end lilypond
2382
2383 @item
2384 Editio Medicaea style fa clef
2385 @tab
2386 @code{medicaea-fa1}, @code{medicaea-fa2}
2387 @tab
2388 @lilypond[fragment,relative=1,notime]
2389   \override Staff.StaffSymbol #'line-count = #4
2390   \override Staff.StaffSymbol #'color = #red
2391   \override Staff.LedgerLineSpanner #'color = #red
2392   \override Voice.Stem #'transparent = ##t
2393   \override NoteHead #'style = #'medicaea.punctum
2394   \clef "medicaea-fa2"
2395   c
2396 @end lilypond
2397
2398 @item
2399 historic style hufnagel do clef
2400 @tab
2401 @code{hufnagel-do1}, @code{hufnagel-do2},@*
2402 @code{hufnagel-do3}
2403 @tab
2404 @lilypond[fragment,relative=1,notime]
2405   \override Staff.StaffSymbol #'line-count = #4
2406   \override Staff.StaffSymbol #'color = #red
2407   \override Staff.LedgerLineSpanner #'color = #red
2408   \override Voice.Stem #'transparent = ##t
2409   \override NoteHead #'style = #'hufnagel.punctum
2410   \clef "hufnagel-do2"
2411   c
2412 @end lilypond
2413
2414 @item
2415 historic style hufnagel fa clef
2416 @tab
2417 @code{hufnagel-fa1}, @code{hufnagel-fa2}
2418 @tab
2419 @lilypond[fragment,relative=1,notime]
2420   \override Staff.StaffSymbol #'line-count = #4
2421   \override Staff.StaffSymbol #'color = #red
2422   \override Staff.LedgerLineSpanner #'color = #red
2423   \override Voice.Stem #'transparent = ##t
2424   \override NoteHead #'style = #'hufnagel.punctum
2425   \clef "hufnagel-fa2"
2426   c
2427 @end lilypond
2428
2429 @item
2430 historic style hufnagel combined do/fa clef
2431 @tab
2432 @code{hufnagel-do-fa}
2433 @tab
2434 @lilypond[fragment,relative=1,notime]
2435   \override Staff.StaffSymbol #'color = #red
2436   \override Staff.LedgerLineSpanner #'color = #red
2437   \override Voice.Stem #'transparent = ##t
2438   \override NoteHead #'style = #'hufnagel.punctum
2439   \clef "hufnagel-do-fa"
2440   c
2441 @end lilypond
2442 @end multitable
2443
2444
2445
2446 @emph{Modern style} means ``as is typeset in contemporary editions of
2447 transcribed mensural music''.
2448
2449 @emph{Petrucci style} means ``inspired by printings published by the
2450 famous engraver Petrucci (1466-1539)''.
2451
2452 @emph{Historic style} means ``as was typeset or written in historic
2453 editions (other than those of Petrucci)''.
2454
2455 @emph{Editio XXX style} means ``as is/was printed in Editio XXX''.
2456
2457 Petrucci used C clefs with differently balanced left-side vertical
2458 beams, depending on which staff line it is printed.
2459
2460 @seealso
2461
2462 In this manual: see @ref{Clef}.
2463
2464 @refbugs
2465
2466 The mensural g clef is mapped to the Petrucci g clef.
2467
2468
2469
2470 @node Ancient flags
2471 @subsection Ancient flags
2472
2473 @cindex flags
2474
2475
2476 Use the @code{flag-style} property of grob @internalsref{Stem} to
2477 select ancient flags.  Besides the @code{default} flag style,
2478 only the @code{mensural} style is supported
2479
2480 @lilypond[quote,fragment,raggedright,verbatim]
2481 \override Stem #'flag-style = #'mensural
2482 \override Stem #'thickness = #1.0
2483 \override NoteHead #'style = #'mensural
2484 \autoBeamOff
2485 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
2486 c''8 d''8 e''8 f''8 c''16 d''16 e''16 f''16 c''32 d''32 e''32 f''32
2487 @end lilypond
2488
2489 Note that the innermost flare of each mensural flag always is
2490 vertically aligned with a staff line.
2491
2492 There is no particular flag style for neo-mensural notation.  Hence,
2493 when typesetting the incipit of a transcribed piece of mensural
2494 music, the default flag style should be used.  There are no flags in
2495 Gregorian Chant notation.
2496
2497 @refbugs
2498
2499 The attachment of ancient flags to stems is slightly off due to a
2500 change in early 2.3.x.
2501
2502 Vertically aligning each flag with a staff line assumes that stems
2503 always end either exactly on or exactly in the middle between two
2504 staff lines.  This may not always be true when using advanced layout
2505 features of classical notation (which however are typically out of
2506 scope for mensural notation).
2507
2508 @node Ancient time signatures
2509 @subsection Ancient time signatures
2510
2511 @cindex time signatures
2512
2513
2514 There is limited support for mensural time signatures.   The
2515 glyphs are hard-wired to particular time fractions.  In other words,
2516 to get a particular mensural signature glyph with the @code{\time n/m}
2517 command, @code{n} and @code{m} have to be chosen according to the
2518 following table
2519
2520 @lilypond[quote,raggedright]
2521 \layout {
2522   indent = 0.0
2523   \context {
2524     \Staff
2525     \remove Staff_symbol_engraver
2526     \remove Clef_engraver
2527     \remove Time_signature_engraver
2528   }
2529 }
2530 {
2531   \set Score.timing = ##f
2532   \set Score.barAlways = ##t
2533   s_\markup { "\\time 4/4" }^\markup { "       " \musicglyph #"timesig.neomensural44" }
2534   s
2535   s_\markup { "\\time 2/2" }^\markup { "       " \musicglyph #"timesig.neomensural22" }
2536   s
2537   s_\markup { "\\time 6/4" }^\markup { "       " \musicglyph #"timesig.neomensural64" }
2538   s
2539   s_\markup { "\\time 6/8" }^\markup { "       " \musicglyph #"timesig.neomensural68" }
2540   \break
2541   s_\markup { "\\time 3/2" }^\markup { "       " \musicglyph #"timesig.neomensural32" }
2542   s
2543   s_\markup { "\\time 3/4" }^\markup { "       " \musicglyph #"timesig.neomensural34" }
2544   s
2545   s_\markup { "\\time 9/4" }^\markup { "       " \musicglyph #"timesig.neomensural94" }
2546   s
2547   s_\markup { "\\time 9/8" }^\markup { "       " \musicglyph #"timesig.neomensural98" }
2548   \break
2549   s_\markup { "\\time 4/8" }^\markup { "       " \musicglyph #"timesig.neomensural48" }
2550   s
2551   s_\markup { "\\time 2/4" }^\markup { "       " \musicglyph #"timesig.neomensural24" }
2552 }
2553 @end lilypond
2554
2555 Use the @code{style} property of grob @internalsref{TimeSignature} to
2556 select ancient time signatures.  Supported styles are
2557 @code{neomensural} and @code{mensural}.  The above table uses the
2558 @code{neomensural} style.  This style is appropriate for the
2559 incipit of transcriptions of mensural pieces.  The @code{mensural}
2560 style mimics the look of historical printings of the 16th century.
2561
2562 The following examples show the differences in style,
2563
2564 @lilypond[raggedright,fragment,relative=1,quote]
2565 {
2566   \fatText
2567
2568   \time 2/2
2569   c1^\markup { \hspace #-2.0 \typewriter default }
2570
2571   \override Staff.TimeSignature #'style = #'numbered
2572   \time 2/2
2573   c1^\markup { \hspace #-2.0 \typewriter numbered }
2574
2575   \override Staff.TimeSignature #'style = #'mensural
2576   \time 2/2
2577   c1^\markup { \hspace #-2.0 \typewriter mensural }
2578
2579   \override Staff.TimeSignature #'style = #'neomensural
2580   \time 2/2
2581   c1^\markup { \hspace #-2.0 \typewriter neomensural }
2582   \override Staff.TimeSignature #'style = #'single-digit
2583   \time 2/2
2584   c1^\markup { \hspace #-2.0 \typewriter single-digit }
2585 }
2586 @end lilypond
2587
2588 @seealso
2589
2590 This manual: @ref{Time signature} gives a general introduction to
2591 the use of time signatures.
2592
2593 @refbugs
2594
2595 Ratios of note durations do not change with the time signature.  For
2596 example, the ratio of 1 brevis = 3 semibrevis (tempus perfectum) must
2597 be made by hand, by setting
2598
2599 @example
2600 breveTP = #(ly:make-duration -1 0 3 2)
2601 @dots{}
2602 @{ c\breveTP f1 @}
2603 @end example
2604
2605 @noindent
2606 This sets @code{breveTP} to 3/2 times 2 = 3 times a whole note.
2607
2608 The @code{old6/8alt} symbol (an alternate symbol for 6/8) is not
2609 addressable with @code{\time}.  Use a @code{\markup} instead
2610
2611 @node Ancient articulations
2612 @subsection Ancient articulations
2613
2614 @cindex articulations
2615
2616 In addition to the standard articulation signs described in section
2617 @ref{Articulations}, articulation signs for ancient notation are
2618 provided.  These are specifically designed for use with notation in
2619 Editio Vaticana style.
2620
2621 @lilypond[quote,raggedright,verbatim]
2622 \include "gregorian-init.ly"
2623 \score {
2624   \context VaticanaVoice {
2625     \override Staff.StaffSymbol #'color = #red
2626     \override Staff.LedgerLineSpanner #'color = #red
2627     \override TextScript #'font-family = #'typewriter
2628     \override TextScript #'font-shape = #'upright
2629     \override Script #'padding = #-0.1
2630     a4\ictus_"ictus" s1
2631     a4\circulus_"circulus" s1
2632     a4\semicirculus_"semicirculus" s1 s
2633     a4\accentus_"accentus" s1
2634     \[ a4_"episem" \episemInitium \pes b \flexa a \episemFinis \]
2635   }
2636 }
2637 @end lilypond
2638
2639 @refbugs
2640
2641 Some articulations are vertically placed too closely to the
2642 correpsonding note heads.
2643
2644 @node Custodes
2645 @subsection Custodes
2646
2647 @cindex custos
2648 @cindex custodes
2649
2650 A @emph{custos} (plural: @emph{custodes}; Latin word for `guard') is a
2651 symbol that appears at the end of a staff.  It anticipates the pitch
2652 of the first note(s) of the following line thus helping the performer
2653 to manage line breaks during performance.
2654
2655 Custodes were frequently used in music notation until the 17th
2656 century.  Nowadays, they have survived only in a few particular forms
2657 of musical notation such as contemporary editions of Gregorian chant
2658 like the @emph{editio vaticana}.  There are different custos glyphs
2659 used in different flavors of notational style.
2660
2661 For typesetting custodes, just put a @internalsref{Custos_engraver} into the
2662 @internalsref{Staff} context when declaring the @code{\layout} block,
2663 as shown in the following example
2664
2665 @example
2666 \layout @{
2667   \context @{
2668     \Staff
2669     \consists Custos_engraver
2670     Custos \override #'style = #'mensural
2671   @}
2672 @}
2673 @end example
2674
2675 The result looks like this
2676
2677 @lilypond[quote,raggedright]
2678 \score {
2679 {
2680   a'1
2681   \override Staff.Custos #'style = #'mensural
2682   \break
2683   g'
2684 }
2685 \layout {
2686   \context { \Staff \consists Custos_engraver }
2687   }
2688 }
2689 @end lilypond
2690
2691 The custos glyph is selected by the @code{style} property.  The styles
2692 supported are @code{vaticana}, @code{medicaea}, @code{hufnagel}, and
2693 @code{mensural}.  They are demonstrated in the following fragment
2694
2695 @lilypond[quote,raggedright,fragment]
2696 \new Lyrics \lyricmode {
2697   \markup { \column {
2698     \typewriter "vaticana"
2699     \line { " " \musicglyph #"custodes.vaticana.u0" }
2700   } }
2701   \markup { \column {
2702     \typewriter "medicaea"
2703     \line { " " \musicglyph #"custodes.medicaea.u0" }
2704   }}
2705   \markup { \column {
2706     \typewriter "hufnagel"
2707     \line { " " \musicglyph #"custodes.hufnagel.u0" }
2708   }}
2709   \markup { \column {
2710     \typewriter "mensural"
2711     \line { " " \musicglyph #"custodes.mensural.u0" }
2712   }}
2713 }
2714 @end lilypond
2715
2716 @seealso
2717
2718 Program reference: @internalsref{Custos}.
2719
2720 Examples: @inputfileref{input/@/regression,custos@/.ly}.
2721
2722
2723 @node Divisiones
2724 @subsection Divisiones
2725
2726 @cindex divisio
2727 @cindex divisiones
2728 @cindex finalis
2729
2730 A @emph{divisio} (plural: @emph{divisiones}; Latin word for
2731 `division') is a staff context symbol that is used to structure
2732 Gregorian music into phrases and sections.  The musical meaning of
2733 @emph{divisio minima}, @emph{divisio maior}, and @emph{divisio maxima}
2734 can be characterized as short, medium, and long pause, somewhat like
2735 the breathmarks from @ref{Breath marks}.  The @emph{finalis} sign not
2736 only marks the end of a chant, but is also frequently used within a
2737 single antiphonal/responsorial chant to mark the end of each section.
2738
2739
2740 To use divisiones, include the file @file{gregorian@/-init@/.ly}.  It
2741 contains definitions that you can apply by just inserting
2742 @code{\divisioMinima}, @code{\divisioMaior}, @code{\divisioMaxima},
2743 and @code{\finalis} at proper places in the input.  Some editions use
2744 @emph{virgula} or @emph{caesura} instead of divisio minima.
2745 Therefore, @file{gregorian@/-init@/.ly} also defines @code{\virgula} and
2746 @code{\caesura}
2747
2748 @lilypondfile[quote,raggedright]{divisiones.ly}
2749
2750 @refcommands
2751
2752 @cindex @code{\virgula}
2753 @code{\virgula},
2754 @cindex @code{\caesura}
2755 @code{\caesura},
2756 @cindex @code{\divisioMinima}
2757 @code{\divisioMinima},
2758 @cindex @code{\divisioMaior}
2759 @code{\divisioMaior},
2760 @cindex @code{\divisioMaxima}
2761 @code{\divisioMaxima},
2762 @cindex @code{\finalis}
2763 @code{\finalis}.
2764
2765 @seealso
2766
2767 In this manual: @ref{Breath marks}.
2768
2769 Program reference: @internalsref{BreathingSign}.
2770
2771 Examples: @inputfileref{input/@/test,divisiones@/.ly}.
2772
2773 @node Ligatures
2774 @subsection Ligatures
2775
2776 @cindex Ligatures
2777
2778 @c TODO: Should double check if I recalled things correctly when I wrote
2779 @c down the following paragraph by heart.
2780
2781 A ligature is a graphical symbol that represents at least two distinct
2782 notes.  Ligatures originally appeared in the manuscripts of Gregorian
2783 chant notation to denote ascending or descending sequences of notes.
2784
2785 Ligatures are entered by enclosing them in @code{\[} and @code{\]}.
2786 Some ligature styles may need additional input syntax specific for
2787 this particular type of ligature.  By default, the
2788 @internalsref{LigatureBracket} engraver just puts a square bracket
2789 above the ligature
2790
2791 @lilypond[quote,raggedright,verbatim]
2792 \transpose c c' {
2793   \[ g c a f d' \]
2794   a g f
2795   \[ e f a g \]
2796 }
2797 @end lilypond
2798
2799 To select a specific style of ligatures, a proper ligature engraver
2800 has to be added to the @internalsref{Voice} context, as explained in
2801 the following subsections.   Only white mensural ligatures
2802 are supported with certain limitations.
2803
2804
2805
2806 @refbugs
2807
2808 Ligatures need special spacing that has not yet been implemented.  As
2809 a result, there is too much space between ligatures most of the time,
2810 and line breaking often is unsatisfactory.  Also, lyrics do not
2811 correctly align with ligatures.
2812
2813 Accidentals must not be printed within a ligature, but instead need to
2814 be collected and printed in front of it.
2815
2816 Augmentum dots within ligatures are not handled correctly.
2817
2818 The syntax still uses the deprecated infix style @code{\[ music expr
2819 \]}.  For consistency reasons, it will eventually be changed to
2820 postfix style @code{note\[ ... note\]}.  Alternatively, the file
2821 @file{gregorian@/-init@/.ly} can be included; it provides a scheme
2822 function
2823 @example
2824 \ligature @var{music expr}
2825 @end example
2826 with the same effect and is believed to be stable.
2827
2828 @menu
2829 * White mensural ligatures::    
2830 * Gregorian square neumes ligatures::  
2831 @end menu
2832
2833 @node White mensural ligatures
2834 @subsubsection White mensural ligatures
2835
2836 @cindex Mensural ligatures
2837 @cindex White mensural ligatures
2838
2839 There is limited support for white mensural ligatures.
2840
2841 To engrave white mensural ligatures, in the layout block put the
2842 @internalsref{Mensural_ligature_engraver} into the
2843 @internalsref{Voice} context, and remove the
2844 @internalsref{Ligature_bracket_engraver}, like this
2845
2846 @example
2847 \layout @{
2848   \context @{
2849     \Voice
2850     \remove Ligature_bracket_engraver
2851     \consists Mensural_ligature_engraver
2852   @}
2853 @}
2854 @end example
2855
2856 There is no additional input language to describe the shape of a
2857 white mensural ligature.  The shape is rather determined solely from
2858 the pitch and duration of the enclosed notes.  While this approach may
2859 take a new user a while to get accustomed to, it has the great advantage
2860 that the full musical information of the ligature is known internally.
2861 This is not only required for correct MIDI output, but also allows for
2862 automatic transcription of the ligatures.
2863
2864 For example,
2865
2866 @example
2867 \set Score.timing = ##f
2868 \set Score.defaultBarType = "empty"
2869 \override NoteHead #'style = #'neomensural
2870 \override Staff.TimeSignature #'style = #'neomensural
2871 \clef "petrucci-g"
2872 \[ c'\maxima g \]
2873 s4
2874 \[ d\longa c\breve f e d \]
2875 s4
2876 \[ c'\maxima d'\longa \]
2877 s4
2878 \[ e'1 a g\breve \]
2879 @end example
2880 @lilypond[quote,raggedright]
2881 \score {
2882   \transpose c c' {
2883     \set Score.timing = ##f
2884     \set Score.defaultBarType = "empty"
2885     \override NoteHead #'style = #'neomensural
2886     \override Staff.TimeSignature #'style = #'neomensural
2887     \clef "petrucci-g"
2888     \[ c'\maxima g \]
2889     s4
2890     \[ d\longa c\breve f e d \]
2891     s4
2892     \[ c'\maxima d'\longa \]
2893     s4
2894     \[ e'1 a g\breve \]
2895   }
2896   \layout {
2897     \context {
2898       \Voice
2899       \remove Ligature_bracket_engraver
2900       \consists Mensural_ligature_engraver
2901     }
2902   }
2903 }
2904 @end lilypond
2905
2906 Without replacing @internalsref{Ligature_bracket_engraver} with
2907 @internalsref{Mensural_ligature_engraver}, the same music transcribes
2908 to the following
2909
2910 @lilypond[quote,raggedright]
2911 \transpose c c' {
2912   \set Score.timing = ##f
2913   \set Score.defaultBarType = "empty"
2914   \override NoteHead #'style = #'neomensural
2915   \override Staff.TimeSignature #'style = #'neomensural
2916   \clef "petrucci-g"
2917   \[ c'\maxima g \]
2918   s4
2919   \[ d\longa c\breve f e d \]
2920   s4
2921   \[ c'\maxima d'\longa \]
2922   s4
2923   \[ e'1 a g\breve \]
2924 }
2925 @end lilypond
2926
2927 @refbugs
2928
2929 The invisible rests (@code{s4}) in the example are used to compensate
2930 for the poor horizontal spacing.
2931
2932 @node Gregorian square neumes ligatures
2933 @subsubsection Gregorian square neumes ligatures
2934
2935 @cindex Square neumes ligatures
2936 @cindex Gregorian square neumes ligatures
2937
2938 There is limited support for Gregorian square neumes notation
2939 (following the style of the Editio Vaticana).  Core ligatures can
2940 already be typeset, but essential issues for serious typesetting are
2941 still lacking, such as (among others) horizontal alignment of multiple
2942 ligatures, lyrics alignment and proper handling of accidentals.
2943
2944
2945 The following table contains the extended neumes table of the 2nd
2946 volume of the Antiphonale Romanum (@emph{Liber Hymnarius}), published
2947 1983 by the monks of Solesmes.
2948
2949 @multitable @columnfractions .4 .2 .2 .2
2950
2951 @item
2952 @b{Neuma aut@*
2953 Neumarum Elementa}
2954 @tab
2955 @b{Figurae@*
2956 Rectae}
2957 @tab
2958 @b{Figurae@*
2959 Liquescentes@*
2960 Auctae}
2961 @tab
2962 @b{Figurae@*
2963 Liquescentes@*
2964 Deminutae}
2965
2966 @c TODO: \layout block is identical in all of the below examples.
2967 @c Therefore, it should somehow be included rather than duplicated all
2968 @c the time. --jr
2969
2970 @c why not make identifiers in ly/engraver-init.ly? --hwn
2971
2972 @c Because it's just used to typeset plain notes without
2973 @c a staff for demonstration purposes rather than something
2974 @c special of Gregorian chant notation. --jr
2975
2976 @item
2977 @code{1. Punctum}
2978 @tab
2979 @lilypond[staffsize=26,linewidth=1.5\cm]
2980 \include "gregorian-init.ly"
2981 \score {
2982   \transpose c c' {
2983     % Punctum
2984     \[ b \]
2985     \noBreak s^\markup {"a"} \noBreak
2986
2987     % Punctum Inclinatum
2988     \[ \inclinatum b \]
2989     \noBreak s^\markup {"b"}
2990   }
2991 \layout { \neumeDemoLayout }}
2992 @end lilypond
2993 @tab
2994 @lilypond[staffsize=26,linewidth=2.5\cm]
2995 \include "gregorian-init.ly"
2996 \score {
2997   \transpose c c' {
2998     % Punctum Auctum Ascendens
2999     \[ \auctum \ascendens b \]
3000     \noBreak s^\markup {"c"} \noBreak
3001
3002     % Punctum Auctum Descendens
3003     \[ \auctum \descendens b \]
3004     \noBreak s^\markup {"d"} \noBreak
3005
3006     % Punctum Inclinatum Auctum
3007     \[ \inclinatum \auctum b \]
3008     \noBreak s^\markup {"e"}
3009   }
3010 \layout { \neumeDemoLayout }}
3011 @end lilypond
3012 @tab
3013 @lilypond[staffsize=26,linewidth=1.0\cm]
3014 \include "gregorian-init.ly"
3015 \score {
3016   \transpose c c' {
3017     % Punctum Inclinatum Parvum
3018     \[ \inclinatum \deminutum b \]
3019     \noBreak s^\markup {"f"}
3020   }
3021 \layout { \neumeDemoLayout }}
3022 @end lilypond
3023
3024 @item
3025 @code{2. Virga}
3026 @tab
3027 @lilypond[staffsize=26,linewidth=1.0\cm]
3028 \include "gregorian-init.ly"
3029 \score {
3030   \transpose c c' {
3031     % Virga
3032     \[ \virga b \]
3033     \noBreak s^\markup {"g"}
3034   }
3035 \layout { \neumeDemoLayout }}
3036 @end lilypond
3037 @tab
3038 @tab
3039
3040 @item
3041 @code{3. Apostropha vel Stropha}
3042 @tab
3043 @lilypond[staffsize=26,linewidth=1.0\cm]
3044 \include "gregorian-init.ly"
3045 \score {
3046   \transpose c c' {
3047     % Stropha
3048     \[ \stropha b \]
3049     \noBreak s^\markup {"h"}
3050   }
3051 \layout { \neumeDemoLayout }}
3052 @end lilypond
3053 @tab
3054 @lilypond[staffsize=26,linewidth=1.0\cm]
3055 \include "gregorian-init.ly"
3056 \score {
3057   \transpose c c' {
3058     % Stropha Aucta
3059     \[ \stropha \auctum b \]
3060     \noBreak s^\markup {"i"}
3061   }
3062 \layout { \neumeDemoLayout }}
3063 @end lilypond
3064 @tab
3065
3066 @item
3067 @code{4. Oriscus}
3068 @tab
3069 @lilypond[staffsize=26,linewidth=1.0\cm]
3070 \include "gregorian-init.ly"
3071 \score {
3072   \transpose c c' {
3073     % Oriscus
3074     \[ \oriscus b \]
3075     \noBreak s^\markup {"j"}
3076   }
3077 \layout { \neumeDemoLayout }}
3078 @end lilypond
3079 @tab
3080 @tab
3081
3082 @item
3083 @code{5. Clivis vel Flexa}
3084 @tab
3085 @lilypond[staffsize=26,linewidth=1.0\cm]
3086 \include "gregorian-init.ly"
3087 \score {
3088   \transpose c c' {
3089     % Clivis vel Flexa
3090     \[ b \flexa g \]
3091     s^\markup {"k"}
3092   }
3093 \layout { \neumeDemoLayout }}
3094 @end lilypond
3095 @tab
3096 @lilypond[staffsize=26,linewidth=2.0\cm]
3097 \include "gregorian-init.ly"
3098 \score {
3099   \transpose c c' {
3100     % Clivis Aucta Descendens
3101     \[ b \flexa \auctum \descendens g \]
3102     \noBreak s^\markup {"l"} \noBreak
3103
3104     % Clivis Aucta Ascendens
3105     \[ b \flexa \auctum \ascendens g \]
3106     \noBreak s^\markup {"m"}
3107   }
3108 \layout { \neumeDemoLayout }}
3109 @end lilypond
3110 @tab
3111 @lilypond[staffsize=26,linewidth=1.0\cm]
3112 \include "gregorian-init.ly"
3113 \score {
3114   \transpose c c' {
3115     % Cephalicus
3116     \[ b \flexa \deminutum g \]
3117     s^\markup {"n"}
3118   }
3119 \layout { \neumeDemoLayout }}
3120 @end lilypond
3121
3122 @item
3123 @code{6. Podatus vel Pes}
3124 @tab
3125 @lilypond[staffsize=26,linewidth=1.0\cm]
3126 \include "gregorian-init.ly"
3127 \score {
3128   \transpose c c' {
3129     % Podatus vel Pes
3130     \[ g \pes b \]
3131     s^\markup {"o"}
3132   }
3133 \layout { \neumeDemoLayout }}
3134 @end lilypond
3135 @tab
3136 @lilypond[staffsize=26,linewidth=2.0\cm]
3137 \include "gregorian-init.ly"
3138 \score {
3139   \transpose c c' {
3140     % Pes Auctus Descendens
3141     \[ g \pes \auctum \descendens b \]
3142     \noBreak s^\markup {"p"} \noBreak
3143
3144     % Pes Auctus Ascendens
3145     \[ g \pes \auctum \ascendens b \]
3146     \noBreak s^\markup {"q"}
3147   }
3148 \layout { \neumeDemoLayout }}
3149 @end lilypond
3150 @tab
3151 @lilypond[staffsize=26,linewidth=1.0\cm]
3152 \include "gregorian-init.ly"
3153 \score {
3154   \transpose c c' {
3155     % Epiphonus
3156     \[ g \pes \deminutum b \]
3157     s^\markup {"r"}
3158   }
3159 \layout { \neumeDemoLayout }}
3160 @end lilypond
3161
3162 @item
3163 @code{7. Pes Quassus}
3164 @tab
3165 @lilypond[staffsize=26,linewidth=1.0\cm]
3166 \include "gregorian-init.ly"
3167 \score {
3168   \transpose c c' {
3169     % Pes Quassus
3170     \[ \oriscus g \pes \virga b \]
3171     s^\markup {"s"}
3172   }
3173 \layout { \neumeDemoLayout }}
3174 @end lilypond
3175 @tab
3176 @lilypond[staffsize=26,linewidth=1.0\cm]
3177 \include "gregorian-init.ly"
3178 \score {
3179   \transpose c c' {
3180     % Pes Quassus Auctus Descendens
3181     \[ \oriscus g \pes \auctum \descendens b \]
3182     s^\markup {"t"}
3183   }
3184 \layout { \neumeDemoLayout }}
3185 @end lilypond
3186 @tab
3187
3188 @item
3189 @code{8. Quilisma Pes}
3190 @tab
3191 @lilypond[staffsize=26,linewidth=1.0\cm]
3192 \include "gregorian-init.ly"
3193 \score {
3194   \transpose c c' {
3195     % Quilisma Pes
3196     \[ \quilisma g \pes b \]
3197     s^\markup {"u"}
3198   }
3199 \layout { \neumeDemoLayout }}
3200 @end lilypond
3201 @tab
3202 @lilypond[staffsize=26,linewidth=1.0\cm]
3203 \include "gregorian-init.ly"
3204 \score {
3205   \transpose c c' {
3206     % Quilisma Pes Auctus Descendens
3207     \[ \quilisma g \pes \auctum \descendens b \]
3208     s^\markup {"v"}
3209   }
3210 \layout { \neumeDemoLayout }}
3211 @end lilypond
3212 @tab
3213
3214 @item
3215 @code{9. Podatus Initio Debilis}
3216 @tab
3217 @lilypond[staffsize=26,linewidth=1.0\cm]
3218 \include "gregorian-init.ly"
3219 \score {
3220   \transpose c c' {
3221     % Pes Initio Debilis
3222     \[ \deminutum g \pes b \]
3223     s^\markup {"w"}
3224   }
3225 \layout { \neumeDemoLayout }}
3226 @end lilypond
3227 @tab
3228 @lilypond[staffsize=26,linewidth=1.0\cm]
3229 \include "gregorian-init.ly"
3230 \score {
3231   \transpose c c' {
3232     % Pes Auctus Descendens Initio Debilis
3233     \[ \deminutum g \pes \auctum \descendens b \]
3234     s^\markup {"x"}
3235   }
3236 \layout { \neumeDemoLayout }}
3237 @end lilypond
3238 @tab
3239
3240 @item
3241 @code{10. Torculus}
3242 @tab
3243 @lilypond[staffsize=26,linewidth=1.0\cm]
3244 \include "gregorian-init.ly"
3245 \score {
3246   \transpose c c' {
3247     % Torculus
3248     \[ a \pes b \flexa g \]
3249     s^\markup {"y"}
3250   }
3251 \layout { \neumeDemoLayout }}
3252 @end lilypond
3253 @tab
3254 @lilypond[staffsize=26,linewidth=1.0\cm]
3255 \include "gregorian-init.ly"
3256 \score {
3257   \transpose c c' {
3258     % Torculus Auctus Descendens
3259     \[ a \pes b \flexa \auctum \descendens g \]
3260     s^\markup {"z"}
3261   }
3262 \layout { \neumeDemoLayout }}
3263 @end lilypond
3264 @tab
3265 @lilypond[staffsize=26,linewidth=1.0\cm]
3266 \include "gregorian-init.ly"
3267 \score {
3268   \transpose c c' {
3269     % Torculus Deminutus
3270     \[ a \pes b \flexa \deminutum g \]
3271     s^\markup {"A"}
3272   }
3273 \layout { \neumeDemoLayout }}
3274 @end lilypond
3275
3276 @item
3277 @code{11. Torculus Initio Debilis}
3278 @tab
3279 @lilypond[staffsize=26,linewidth=1.0\cm]
3280 \include "gregorian-init.ly"
3281 \score {
3282   \transpose c c' {
3283     % Torculus Initio Debilis
3284     \[ \deminutum a \pes b \flexa g \]
3285     s^\markup {"B"}
3286   }
3287 \layout { \neumeDemoLayout }}
3288 @end lilypond
3289 @tab
3290 @lilypond[staffsize=26,linewidth=1.0\cm]
3291 \include "gregorian-init.ly"
3292 \score {
3293   \transpose c c' {
3294     % Torculus Auctus Descendens Initio Debilis
3295     \[ \deminutum a \pes b \flexa \auctum \descendens g \]
3296     s^\markup {"C"}
3297   }
3298 \layout { \neumeDemoLayout }}
3299 @end lilypond
3300 @tab
3301 @lilypond[staffsize=26,linewidth=1.0\cm]
3302 \include "gregorian-init.ly"
3303 \score {
3304   \transpose c c' {
3305     % Torculus Deminutus Initio Debilis
3306     \[ \deminutum a \pes b \flexa \deminutum g \]
3307     s^\markup {"D"}
3308   }
3309 \layout { \neumeDemoLayout }}
3310 @end lilypond
3311
3312 @item
3313 @code{12. Porrectus}
3314 @tab
3315 @lilypond[staffsize=26,linewidth=1.0\cm]
3316 \include "gregorian-init.ly"
3317 \score {
3318   \transpose c c' {
3319     % Porrectus
3320     \[ a \flexa g \pes b \]
3321     s^\markup {"E"}
3322   }
3323 \layout { \neumeDemoLayout }}
3324 @end lilypond
3325 @tab
3326 @lilypond[staffsize=26,linewidth=1.0\cm]
3327 \include "gregorian-init.ly"
3328 \score {
3329   \transpose c c' {
3330     % Porrectus Auctus Descendens
3331     \[ a \flexa g \pes \auctum \descendens b \]
3332     s^\markup {"F"}
3333   }
3334 \layout { \neumeDemoLayout }}
3335 @end lilypond
3336 @tab
3337 @lilypond[staffsize=26,linewidth=1.0\cm]
3338 \include "gregorian-init.ly"
3339 \score {
3340   \transpose c c' {
3341     % Porrectus Deminutus
3342     \[ a \flexa g \pes \deminutum b \]
3343     s^\markup {"G"}
3344   }
3345 \layout { \neumeDemoLayout }}
3346 @end lilypond
3347
3348 @item
3349 @code{13. Climacus}
3350 @tab
3351 @lilypond[staffsize=26,linewidth=1.0\cm]
3352 \include "gregorian-init.ly"
3353 \score {
3354   \transpose c c' {
3355     % Climacus
3356     \[ \virga b \inclinatum a \inclinatum g \]
3357     s^\markup {"H"}
3358   }
3359   \layout { \neumeDemoLayout }
3360 }
3361 @end lilypond
3362 @tab
3363 @lilypond[staffsize=26,linewidth=1.0\cm]
3364 \include "gregorian-init.ly"
3365 \score {
3366   \transpose c c' {
3367     % Climacus Auctus
3368     \[ \virga b \inclinatum a \inclinatum \auctum g \]
3369     s^\markup {"I"}
3370   }
3371 \layout { \neumeDemoLayout }}
3372 @end lilypond
3373 @tab
3374 @lilypond[staffsize=26,linewidth=1.0\cm]
3375 \include "gregorian-init.ly"
3376 \score {
3377   \transpose c c' {
3378     % Climacus Deminutus
3379     \[ \virga b \inclinatum a \inclinatum \deminutum g \]
3380     s^\markup {"J"}
3381   }
3382 \layout { \neumeDemoLayout }}
3383 @end lilypond
3384
3385 @item
3386 @code{14. Scandicus}
3387 @tab
3388 @lilypond[staffsize=26,linewidth=1.0\cm]
3389 \include "gregorian-init.ly"
3390 \score {
3391   \transpose c c' {
3392     % Scandicus
3393     \[ g \pes a \virga b \]
3394     s^\markup {"K"}
3395   }
3396 \layout { \neumeDemoLayout }}
3397 @end lilypond
3398 @tab
3399 @lilypond[staffsize=26,linewidth=1.0\cm]
3400 \include "gregorian-init.ly"
3401 \score {
3402   \transpose c c' {
3403     % Scandicus Auctus Descendens
3404     \[ g \pes a \pes \auctum \descendens b \]
3405     s^\markup {"L"}
3406   }
3407 \layout { \neumeDemoLayout }}
3408 @end lilypond
3409 @tab
3410 @lilypond[staffsize=26,linewidth=1.0\cm]
3411 \include "gregorian-init.ly"
3412 \score {
3413   \transpose c c' {
3414     % Scandicus Deminutus
3415     \[ g \pes a \pes \deminutum b \]
3416     s^\markup {"M"}
3417   }
3418 \layout { \neumeDemoLayout }}
3419 @end lilypond
3420
3421 @item
3422 @code{15. Salicus}
3423 @tab
3424 @lilypond[staffsize=26,linewidth=1.0\cm]
3425 \include "gregorian-init.ly"
3426 \score {
3427   \transpose c c' {
3428     % Salicus
3429     \[ g \oriscus a \pes \virga b \]
3430     s^\markup {"N"}
3431   }
3432 \layout { \neumeDemoLayout }}
3433 @end lilypond
3434 @tab
3435 @lilypond[staffsize=26,linewidth=1.0\cm]
3436 \include "gregorian-init.ly"
3437 \score {
3438   \transpose c c' {
3439     % Salicus Auctus Descendens
3440     \[ g \oriscus a \pes \auctum \descendens b \]
3441     s^\markup {"O"}
3442   }
3443 \layout { \neumeDemoLayout }}
3444 @end lilypond
3445 @tab
3446
3447 @item
3448 @code{16. Trigonus}
3449 @tab
3450 @lilypond[staffsize=26,linewidth=1.0\cm]
3451 \include "gregorian-init.ly"
3452 \score {
3453   \transpose c c' {
3454     % Trigonus
3455     \[ \stropha b \stropha b \stropha a \]
3456     s^\markup {"P"}
3457   }
3458   \layout { \neumeDemoLayout }
3459 }
3460 @end lilypond
3461 @tab
3462 @tab
3463
3464 @end multitable
3465
3466
3467 Unlike most other neumes notation systems, the input language for
3468 neumes does not reflect the typographical appearance, but is designed
3469 to focus on musical meaning.  For example, @code{\[ a \pes b
3470 \flexa g \]} produces a Torculus consisting of three Punctum heads,
3471 while @code{\[ a \flexa g \pes b \]} produces a Porrectus with a
3472 curved flexa shape and only a single Punctum head.  There is no
3473 command to explicitly typeset the curved flexa shape; the decision of
3474 when to typeset a curved flexa shape is based on the musical
3475 input.  The idea of this approach is to separate the musical aspects
3476 of the input from the notation style of the output.  This way, the
3477 same input can be reused to typeset the same music in a different
3478 style of Gregorian chant notation.
3479
3480 The following table shows the code fragments that produce the
3481 ligatures in the above neumes table.  The letter in the first column
3482 in each line of the below table indicates to which ligature in the
3483 above table it refers.  The second column gives the name of the
3484 ligature.  The third column shows the code fragment that produces this
3485 ligature, using @code{g}, @code{a}, and @code{b} as example pitches.
3486
3487 @multitable @columnfractions .02 .31 .67
3488 @item
3489 @b{#}
3490 @tab
3491 @b{Name}
3492 @tab
3493 @b{Input Language}
3494
3495 @item
3496 a
3497 @tab
3498 Punctum
3499 @tab
3500 @code{\[ b \]}
3501
3502 @item
3503 b
3504 @tab
3505 Punctum Inclinatum
3506 @tab
3507 @code{\[ \inclinatum b \]}
3508
3509 @item
3510 c
3511 @tab
3512 Punctum Auctum@*
3513 Ascendens
3514 @tab
3515 @code{\[ \auctum \ascendens b \]}
3516
3517 @item
3518 d
3519 @tab
3520 Punctum Auctum@*
3521 Descendens
3522 @tab
3523 @code{\[ \auctum \descendens b \]}
3524
3525 @item
3526 e
3527 @tab
3528 Punctum Inclinatum@*
3529 Auctum
3530 @tab
3531 @code{\[ \inclinatum \auctum b \]}
3532
3533 @item
3534 f
3535 @tab
3536 Punctum Inclinatum@*
3537 Parvum @tab
3538 @code{\[ \inclinatum \deminutum b \]}
3539
3540 @item
3541 g
3542 @tab
3543 Virga
3544 @tab
3545 @code{\[ \virga b \]}
3546
3547 @item
3548 h
3549 @tab
3550 Stropha
3551 @tab
3552 @code{\[ \stropha b \]}
3553
3554 @item
3555 i
3556 @tab
3557 Stropha Aucta
3558 @tab
3559 @code{\[ \stropha \auctum b \]}
3560
3561 @item
3562 j
3563 @tab
3564 Oriscus
3565 @tab
3566 @code{\[ \oriscus b \]}
3567
3568 @item
3569 k
3570 @tab
3571 Clivis vel Flexa
3572 @tab
3573 @code{\[ b \flexa g \]}
3574
3575 @item
3576 l
3577 @tab
3578 Clivis Aucta@*
3579 Descendens
3580 @tab
3581 @code{\[ b \flexa \auctum \descendens g \]}
3582
3583 @item
3584 m
3585 @tab
3586 Clivis Aucta@*
3587 Ascendens
3588 @tab
3589 @code{\[ b \flexa \auctum \ascendens g \]}
3590
3591 @item
3592 n
3593 @tab
3594 Cephalicus
3595 @tab
3596 @code{\[ b \flexa \deminutum g \]}
3597
3598 @item
3599 o
3600 @tab
3601 Podatus vel Pes
3602 @tab
3603 @code{\[ g \pes b \]}
3604
3605 @item
3606 p
3607 @tab
3608 Pes Auctus@*
3609 Descendens
3610 @tab
3611 @code{\[ g \pes \auctum \descendens b \]}
3612
3613 @item
3614 q
3615 @tab
3616 Pes Auctus@*
3617 Ascendens
3618 @tab
3619 @code{\[ g \pes \auctum \ascendens b \]}
3620
3621 @item
3622 r
3623 @tab
3624 Epiphonus
3625 @tab
3626 @code{\[ g \pes \deminutum b \]}
3627
3628 @item
3629 s
3630 @tab
3631 Pes Quassus
3632 @tab
3633 @code{\[ \oriscus g \pes \virga b \]}
3634
3635 @item
3636 t
3637 @tab
3638 Pes Quassus@*
3639 Auctus Descendens @tab
3640 @code{\[ \oriscus g \pes \auctum \descendens b \]}
3641
3642 @item
3643 u
3644 @tab
3645 Quilisma Pes
3646 @tab
3647 @code{\[ \quilisma g \pes b \]}
3648
3649 @item
3650 v
3651 @tab
3652 Quilisma Pes@*
3653 Auctus Descendens
3654 @tab
3655 @code{\[ \quilisma g \pes \auctum \descendens b \]}
3656
3657 @item
3658 w
3659 @tab
3660 Pes Initio Debilis
3661 @tab
3662 @code{\[ \deminutum g \pes b \]}
3663
3664 @item
3665 x
3666 @tab
3667 Pes Auctus Descendens@*
3668 Initio Debilis
3669 @tab
3670 @code{\[ \deminutum g \pes \auctum \descendens b \]}
3671
3672 @item
3673 y
3674 @tab
3675 Torculus
3676 @tab
3677 @code{\[ a \pes b \flexa g \]}
3678
3679 @item
3680 z
3681 @tab
3682 Torculus Auctus@*
3683 Descendens
3684 @tab
3685 @code{\[ a \pes b \flexa \auctum \descendens g \]}
3686
3687 @item
3688 A
3689 @tab
3690 Torculus Deminutus
3691 @tab
3692 @code{\[ a \pes b \flexa \deminutum g \]}
3693
3694 @item
3695 B
3696 @tab
3697 Torculus Initio Debilis
3698 @tab
3699 @code{\[ \deminutum a \pes b \flexa g \]}
3700
3701 @item
3702 C
3703 @tab
3704 Torculus Auctus@*
3705 Descendens Initio Debilis
3706 @tab
3707 @code{\[ \deminutum a \pes b \flexa \auctum \descendens g \]}
3708
3709 @item
3710 D
3711 @tab
3712 Torculus Deminutus@*
3713 Initio Debilis
3714 @tab
3715 @code{\[ \deminutum a \pes b \flexa \deminutum g \]}
3716
3717 @item
3718 E
3719 @tab
3720 Porrectus
3721 @tab
3722 @code{\[ a \flexa g \pes b \]}
3723
3724 @item
3725 F
3726 @tab
3727 Porrectus Auctus@*
3728 Descendens
3729 @tab
3730 @code{\[ a \flexa g \pes \auctum \descendens b \]}
3731
3732 @item
3733 G
3734 @tab
3735 Porrectus Deminutus
3736 @tab
3737 @code{\[ a \flexa g \pes \deminutum b \]}
3738
3739 @item
3740 H
3741 @tab
3742 Climacus
3743 @tab
3744 @code{\[ \virga b \inclinatum a \inclinatum g \]}
3745
3746 @item
3747 I
3748 @tab
3749 Climacus Auctus
3750 @tab
3751 @code{\[ \virga b \inclinatum a \inclinatum \auctum g \]}
3752
3753 @item
3754 J
3755 @tab
3756 Climacus Deminutus
3757 @tab
3758 @code{\[ \virga b \inclinatum a \inclinatum \deminutum g \]}
3759
3760 @item
3761 K
3762 @tab
3763 Scandicus
3764 @tab
3765 @code{\[ g \pes a \virga b \]}
3766
3767 @item
3768 L
3769 @tab
3770 Scandicus Auctus@*
3771 Descendens
3772 @tab
3773 @code{\[ g \pes a \pes \auctum \descendens b \]}
3774
3775 @item
3776 M
3777 @tab
3778 Scandicus Deminutus
3779 @tab
3780 @code{\[ g \pes a \pes \deminutum b \]}
3781
3782 @item
3783 N
3784 @tab
3785 Salicus
3786 @tab
3787 @code{\[ g \oriscus a \pes \virga b \]}
3788
3789 @item
3790 O
3791 @tab
3792 Salicus Auctus Descendens
3793 @tab
3794 @code{\[ g \oriscus a \pes \auctum \descendens b \]}
3795
3796 @item
3797 P
3798 @tab
3799 Trigonus
3800 @tab
3801 @code{\[ \stropha b \stropha b \stropha a \]}
3802 @end multitable
3803
3804 @refcommands
3805
3806 The following head prefixes are supported
3807
3808 @cindex @code{\virga}
3809 @code{\virga},
3810 @cindex @code{\stropha}
3811 @code{\stropha},
3812 @cindex @code{\inclinatum}
3813 @code{\inclinatum},
3814 @cindex @code{\auctum}
3815 @code{\auctum},
3816 @cindex @code{\descendens}
3817 @code{\descendens},
3818 @cindex @code{\ascendens}
3819 @code{\ascendens},
3820 @cindex @code{\oriscus}
3821 @code{\oriscus},
3822 @cindex @code{\quilisma}
3823 @code{\quilisma},
3824 @cindex @code{\deminutum}
3825 @code{\deminutum}.
3826
3827 Head prefixes can be accumulated, though restrictions apply.  For
3828 example, either @code{\descendens} or @code{\ascendens} can be applied
3829 to a head, but not both to the same head.
3830
3831 @cindex @code{\pes}
3832 @cindex @code{\flexa}
3833 Two adjacent heads can be tied together with the @code{\pes} and
3834 @code{\flexa} infix commands for a rising and falling line of melody,
3835 respectively.
3836
3837
3838
3839 @node Gregorian Chant contexts
3840 @subsection Gregorian Chant contexts
3841
3842 @cindex VaticanaVoiceContext
3843 @cindex VaticanaStaffContext
3844
3845 The predefined @code{VaticanaVoiceContext} and
3846 @code{VaticanaStaffContext} can be used to engrave a piece of
3847 Gregorian Chant in the style of the Editio Vaticana.  These contexts
3848 initialize all relevant context properties and grob properties to
3849 proper values, so you can immediately go ahead entering the chant, as
3850 the following excerpt demonstrates
3851
3852 @lilypond[quote,raggedright,packed,verbatim]
3853 \include "gregorian-init.ly"
3854 \score {
3855   <<
3856     \context VaticanaVoice = "cantus" {
3857       \override Staff.StaffSymbol #'color = #red
3858       \override Staff.LedgerLineSpanner #'color = #red
3859       \override Score.BarNumber #'transparent = ##t {
3860         \[ c'\melisma c' \flexa a \]
3861         \[ a \flexa \deminutum g\melismaEnd \]
3862         f \divisioMinima
3863         \[ f\melisma \pes a c' c' \pes d'\melismaEnd \]
3864         c' \divisioMinima \break
3865         \[ c'\melisma c' \flexa a \]
3866         \[ a \flexa \deminutum g\melismaEnd \] f \divisioMinima
3867       }
3868     }
3869     \lyricsto "cantus" \new Lyrics {
3870       San- ctus, San- ctus, San- ctus
3871     }
3872   >>
3873 }
3874 @end lilypond
3875
3876
3877 @node Mensural contexts
3878 @subsection Mensural contexts
3879
3880 @cindex MensuralVoiceContext
3881 @cindex MensuralStaffContext
3882
3883 The predefined @code{MensuralVoiceContext} and
3884 @code{MensuralStaffContext} can be used to engrave a piece in mensural
3885 style.  These contexts initialize all relevant context properties and
3886 grob properties to proper values, so you can immediately go ahead
3887 entering the chant, as the following excerpt demonstrates
3888
3889 @lilypond[quote,raggedright,verbatim]
3890 \score {
3891   <<
3892     \context MensuralVoice = "discantus" \transpose c c' {
3893       \override Score.BarNumber #'transparent = ##t {
3894         c'1\melisma bes a g\melismaEnd
3895         f\breve
3896         \[ f1\melisma a c'\breve d'\melismaEnd \]
3897         c'\longa
3898         c'\breve\melisma a1 g1\melismaEnd
3899         fis\longa^\signumcongruentiae
3900       }
3901     }
3902     \lyricsto "discantus" \new Lyrics {
3903       San -- ctus, San -- ctus, San -- ctus
3904     }
3905   >>
3906 }
3907 @end lilypond
3908
3909 @node Musica ficta accidentals
3910 @subsection Musica ficta accidentals
3911
3912 In European music from before about 1600, singers were often expected
3913 to chromatically alter notes at their own initiative. This is called
3914 ``Musica Ficta''. In modern transcriptions, these accidentals are
3915 usually printed over the note.
3916
3917 @cindex Musica ficta
3918
3919 Support for such suggested accidentals is included, and can be
3920 switched on by setting @code{suggestAccidentals} to true.
3921
3922 @cindex @code{suggestAccidentals}
3923
3924 @lilypond[verbatim,fragment,relative=1]
3925 fis gis
3926 \set suggestAccidentals = ##t
3927 ais bis
3928 @end lilypond 
3929
3930 @seealso
3931
3932 Program reference: @internalsref{Accidental_engraver} engraver and the
3933 @internalsref{AccidentalSuggestion} object.
3934
3935 @node Figured bass
3936 @subsection Figured bass
3937
3938 @cindex Basso continuo
3939
3940 @c TODO: musicological blurb about FB
3941
3942
3943 LilyPond has limited support for figured bass
3944
3945 @lilypond[quote,raggedright,verbatim,fragment]
3946 <<
3947   \context Voice { \clef bass dis4 c d ais g fis}
3948   \context FiguredBass \figuremode {
3949     < 6 >4 < 7 >8 < 6+ [_!] >
3950     < 6 >4 <6 5 [3+] >
3951     < _ >4 < 6 >4
3952   }
3953 >>
3954 @end lilypond
3955
3956 The support for figured bass consists of two parts: there is an input
3957 mode, introduced by @code{\figuremode}, where you can enter bass figures
3958 as numbers, and there is a context called @internalsref{FiguredBass} that
3959 takes care of making @internalsref{BassFigure} objects.
3960
3961 In figures input mode, a group of bass figures is delimited by
3962 @code{<} and @code{>}.  The duration is entered after the @code{>}
3963 @example
3964 <4 6>
3965 @end example
3966 @lilypond[quote,raggedright,fragment]
3967 \context FiguredBass
3968 \figuremode { <4 6> }
3969 @end lilypond
3970
3971 Accidentals are added when you append @code{-}, @code{!}, and @code{+}
3972 to the numbers
3973
3974 @example
3975 <4- 6+ 7!>
3976 @end example
3977 @lilypond[quote,raggedright,fragment]
3978 \context FiguredBass
3979 \figuremode { <4- 6+ 7!> }
3980 @end lilypond
3981
3982 Spaces or dashes may be inserted by using @code{_}.  Brackets are
3983 introduced with @code{[} and @code{]}. You can also include text
3984 strings and text markups, see @ref{Overview of text markup commands}.
3985
3986 @example
3987 < [4 6] 8 [_! 12] > < 5 \markup @{ + \number 6 @} >
3988 @end example
3989 @lilypond[quote,raggedright,fragment]
3990 \context FiguredBass
3991 \figuremode { < [4 6] 8 [_! 12] > < 5 \markup{ + \number 6 } > }
3992 @end lilypond
3993
3994
3995 Although the support for figured bass may superficially resemble chord
3996 support, it works much simpler.  The @code{\figuremode} mode simply
3997 stores the numbers and @internalsref{FiguredBass} context prints
3998 them as entered.  There is no conversion to pitches and no
3999 realizations of the bass are played in the MIDI file.
4000
4001 Internally, the code produces markup texts.  You can use any of the
4002 markup text properties to override formatting.  For example, the
4003 vertical spacing of the figures may be set with @code{baseline-skip}.
4004
4005 @seealso
4006
4007 Program reference: @internalsref{BassFigure} object,
4008 @internalsref{FiguredBass} context.
4009
4010 @refbugs
4011
4012 Slash notation for alterations is not supported.
4013
4014
4015
4016 @node Other instrument specific notation
4017 @section Other instrument specific notation
4018
4019 This section includes extra information for writing for instruments.
4020
4021 @menu
4022 * Artificial harmonics (strings)::  
4023 @end menu
4024
4025 @node Artificial harmonics (strings)
4026 @subsection Artificial harmonics (strings)
4027
4028 @cindex artificial harmonics
4029
4030 Artificial harmonics are notated with a different notehead style.  They
4031 are entered by marking the harmonic pitch with @code{\harmonic}.
4032
4033 @lilypond[raggedright,verbatim,quote,fragment,relative=1]
4034 <c g'\harmonic>4
4035 @end lilypond
4036