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