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