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