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