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