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