]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/chords.itely
2d2975bc9ec9a7e452d7d7ac2fca569d1e4804a4
[lilypond.git] / Documentation / notation / chords.itely
1 @c -*- coding: utf-8; mode: texinfo; -*-
2 @ignore
3     Translation of GIT committish: FILL-IN-HEAD-COMMITTISH
4
5     When revising a translation, copy the HEAD committish of the
6     version that you are working on.  For details, see the Contributors'
7     Guide, node Updating translation committishes..
8 @end ignore
9
10 @c \version "2.14.0"
11
12
13 @node Chord notation
14 @section Chord notation
15
16 @lilypondfile[quote]{chords-headword.ly}
17
18 Chords can be entered either as normal notes or in chord mode and displayed
19 using a variety of traditional European chord naming conventions.  Chord
20 names and figured bass notation can also be displayed.
21
22 @menu
23 * Chord mode::
24 * Displaying chords::
25 * Figured bass::
26 @end menu
27
28
29 @node Chord mode
30 @subsection Chord mode
31
32 @cindex chord chords
33
34 Chord mode is used to enter chords using an indicator of the chord
35 structure, rather than the chord pitches.
36
37 @menu
38 * Chord mode overview::
39 * Common chords::
40 * Extended and altered chords::
41 @end menu
42
43 @node Chord mode overview
44 @unnumberedsubsubsec Chord mode overview
45
46 @cindex chord names
47 @cindex chord mode
48
49 Chords can be entered as simultaneous music, as discussed in
50 @ref{Chorded notes}.
51
52 Chords can also be entered in @qq{chord mode}, which is an input
53 mode that focuses on the structures of chords in traditional
54 European music, rather than on specific pitches.  This is
55 convenient for those who are familiar with using chord names to
56 describe chords.  More information on different input modes can be
57 found at @ref{Input modes}.
58
59 @lilypond[verbatim,quote,ragged-right]
60 \chordmode { c1 g a g c }
61 @end lilypond
62
63 Chords entered using chord mode are music elements, and can be
64 transposed just like chords entered using simultaneous music.
65 @code{\chordmode} is absolute, as @code{\relative} has no effect
66 on @code{chordmode} blocks.  However, in @code{\chordmode} the
67 absolute pitches are one octave higher than in note mode.
68
69 Chord mode and note mode can be mixed in sequential music:
70
71 @lilypond[verbatim,quote,ragged-right,relative=1]
72 <c e g>2 <g b d>
73 \chordmode { c2 f }
74 <c e g>2 <g' b d>
75 \chordmode { f2 g }
76 @end lilypond
77
78
79 @seealso
80 Music Glossary:
81 @rglos{chord}.
82
83 Notation Reference:
84 @ref{Chorded notes},
85 @ref{Input modes}.
86
87 Snippets:
88 @rlsr{Chords}.
89
90
91 @knownissues
92
93 Predefined shorthands for articulations and ornaments cannot be used
94 on notes in chord mode, see @ref{Articulations and ornamentations}.
95
96 When chord mode and note mode are mixed in sequential music, and
97 chord mode comes first, the note mode will create a new @code{Staff}
98 context:
99
100 @lilypond[verbatim,quote,ragged-right,relative=1]
101 \chordmode { c2 f }
102 <c e g>2 <g' b d>
103 @end lilypond
104
105 @noindent
106 To avoid this behavior, explicitly create the @code{Staff} context:
107
108 @lilypond[verbatim,quote,ragged-right,relative=1]
109 \new Staff {
110   \chordmode { c2 f }
111   <c e g>2  <g' b d>
112 }
113 @end lilypond
114
115 @node Common chords
116 @unnumberedsubsubsec Common chords
117
118 @cindex triads
119 @cindex seventh chords
120 @cindex root of chord
121 @cindex modifiers, in chords.
122 @cindex chord quality
123
124 Major triads are entered by including the root and an
125 optional duration:
126
127 @lilypond[verbatim,quote,ragged-right]
128 \chordmode { c2 f4 g }
129 @end lilypond
130
131 Minor, augmented, and diminished triads are entered by placing
132 @code{:} and a quality modifier string after the duration:
133
134 @lilypond[verbatim,quote,ragged-right]
135 \chordmode { c2:m f4:aug g:dim }
136 @end lilypond
137
138 Seventh chords can be created:
139
140 @lilypond[quote,ragged-right,verbatim]
141 \chordmode { c1:7 c:m7 c:maj7 c:dim7 c:aug7 }
142 @end lilypond
143
144 @funindex aug
145 @funindex dim
146 @funindex maj
147 @funindex m
148
149 The table below shows the actions of the quality modifiers on
150 triads and seventh chords.  The default seventh step added to
151 chords is a minor or flatted seventh, which makes the dominant
152 seventh the basic seventh chord.  All alterations are relative to
153 the dominant seventh.  A more complete table of modifier usage
154 is found at @ref{Common chord modifiers}.
155
156 @c @table @code
157 @multitable @columnfractions .2 .4 .3
158
159 @item
160 @b{Modifier}
161 @tab
162 @b{Action}
163 @tab
164 @b{Example}
165
166 @item
167 None
168 @tab
169 The default action; produces a major triad.
170 @tab
171 @lilypond[line-width=4\cm, noragged-right]
172 \chordmode {
173   \override Staff.TimeSignature #'stencil = ##f
174   c1
175 }
176 @end lilypond
177
178 @item
179 m, m7
180 @tab
181 The minor chord.  This modifier lowers the 3rd.
182 @tab
183 @lilypond[line-width=4\cm, noragged-right]
184 \chordmode {
185   \override Staff.TimeSignature #'stencil = ##f
186   c1:m c:m7
187 }
188 @end lilypond
189
190
191 @item
192 dim, dim7
193 @tab
194 The diminished chord.  This modifier lowers the 3rd, 5th and (if
195 present) the 7th step.
196 @tab
197 @lilypond[line-width=4\cm, noragged-right]
198 \chordmode {
199   \override Staff.TimeSignature #'stencil = ##f
200   c1:dim c:dim7
201 }
202 @end lilypond
203
204 @item
205 aug
206 @tab
207 The augmented chord.  This modifier raises the 5th step.
208 @tab
209 @lilypond[line-width=4\cm, noragged-right]
210 \chordmode {
211   \override Staff.TimeSignature #'stencil = ##f
212   c1:aug
213 }
214 @end lilypond
215
216 @item
217 maj, maj7
218 @tab
219 The major 7th chord.  This modifier adds a raised 7th step.  The
220 @code{7} following @code{maj} is optional.  Do NOT use this modifier
221 to create a major triad.
222 @tab
223 @lilypond[line-width=4\cm, noragged-right]
224 \chordmode {
225   \override Staff.TimeSignature #'stencil = ##f
226   c1:maj c:maj7
227 }
228 @end lilypond
229
230 @end multitable
231
232
233 @seealso
234 Notation Reference:
235 @ref{Common chord modifiers},
236 @ref{Extended and altered chords}.
237
238 Snippets:
239 @rlsr{Chords}.
240
241
242 @knownissues
243 Only one quality modifier should be used per chord, typically on the
244 highest step present in the chord.  Chords with more than quality
245 modifier will be parsed without an error or warning, but the results
246 are unpredictable.  Chords that cannot be achieved with a single
247 quality modifier should be altered by individual pitches, as described
248 in @ref{Extended and altered chords}.
249
250
251 @node Extended and altered chords
252 @unnumberedsubsubsec Extended and altered chords
253
254 @cindex extended chords
255 @cindex altered chords
256
257 Chord structures of arbitrary complexity can be created in chord
258 mode.  The modifier string can be used to extend a chord, add or
259 remove chord steps, raise or lower chord steps, and add a bass note
260 or create an inversion.
261
262 The first number following the @code{:} is taken to be the extent
263 of the chord.  The chord is constructed by sequentially adding
264 thirds to the root until the specified number has been reached.
265 Note that the seventh step added as part of an extended chord will be the
266 minor or flatted seventh, not the major seventh.
267 If the extent is not a third (e.g., 6), thirds are added up to the
268 highest third below the extent, and then the step of the extent is
269 added.  The largest possible value for the extent is 13.  Any
270 larger value is interpreted as 13.
271
272 @lilypond[quote,ragged-right,verbatim]
273 \chordmode {
274   c1:2 c:3 c:4 c:5
275   c1:6 c:7 c:8 c:9
276   c1:10 c:11 c:12 c:13
277   c1:14
278 }
279 @end lilypond
280
281 @noindent
282 Note that both @code{c:5} and @code{c} produce a C major triad.
283
284 Since an unaltered 11 does not sound good when combined with an
285 unaltered 13, the 11 is removed from a @code{:13} chord (unless it
286 is added explicitly).
287
288 @lilypond[quote,ragged-right,verbatim]
289 \chordmode {
290   c1:13 c:13.11 c:m13
291 }
292 @end lilypond
293
294 @cindex additions, in chords
295
296 Individual steps can be added to a chord.  Additions follow the
297 extent and are prefixed by a dot (@code{.}).  The basic seventh
298 step added to a chord is the minor or flatted seventh, rather than
299 the major seventh.
300
301 @lilypond[quote,verbatim]
302 \chordmode {
303   c1:5.6 c:3.7.8 c:3.6.13
304 }
305 @end lilypond
306
307 Added steps can be as high as desired.
308
309 @lilypond[quote,verbatim]
310 \chordmode {
311   c4:5.15 c:5.20 c:5.25 c:5.30
312 }
313 @end lilypond
314
315 @cindex chord steps, altering
316
317 Added chord steps can be altered by suffixing a @code{-} or @code{+}
318 sign to the number.  To alter a step that is automatically included
319 as part of the basic chord structure, add it as an altered step.
320
321 @lilypond[quote,verbatim]
322 \chordmode {
323   c1:7+ c:5+.3- c:3-.5-.7-
324 }
325 @end lilypond
326
327 @cindex removals, in chords
328
329 @funindex ^
330
331 Following any steps to be added, a series of steps to be removed
332 is introduced in a modifier string with a prefix of @code{^}.
333 If more than one step is to be removed, the steps to be
334 removed are separated by @code{.} following the
335 initial @code{^}.
336
337 @lilypond[quote,verbatim]
338 \chordmode {
339   c1^3 c:7^5 c:9^3 c:9^3.5 c:13.11^3.7
340 }
341 @end lilypond
342
343 @funindex sus
344
345 The modifier @code{sus} can be added to the modifier string to
346 create suspended chords.  This removes the 3rd step from the chord.
347 Append either @code{2} or @code{4} to add the 2nd or 4th step to the
348 chord.  @code{sus} is equivalent to @code{^3}; @code{sus4} is
349 equivalent to @code{.4^3}.
350
351 @lilypond[quote,ragged-right,verbatim]
352 \chordmode {
353   c1:sus c:sus2 c:sus4 c:5.4^3
354 }
355 @end lilypond
356
357 @funindex /
358 @cindex chord inversions
359 @cindex bass note, for chords
360
361 Inversions (putting a pitch other than the root on the bottom of the
362 chord) and added bass notes can be specified by appending
363 @code{/}@var{pitch} to the chord.
364
365 @lilypond[quote,ragged-right,verbatim]
366 \chordmode {
367   c1 c/g c/f
368 }
369 @end lilypond
370
371 @funindex /+
372
373 A bass note that is part of the chord can be added, instead of
374 moved as part of an inversion, by using @code{/+}@var{pitch}.
375
376 @lilypond[quote,ragged-right,verbatim]
377 \chordmode {
378   c1 c/g c/+g
379 }
380 @end lilypond
381
382 Chord modifiers that can be used to produce a variety of
383 standard chords are shown in
384 @ref{Common chord modifiers}.
385
386
387 @seealso
388 Notation Reference:
389 @ref{Common chord modifiers}.
390
391 Snippets:
392 @rlsr{Chords}.
393
394
395 @knownissues
396
397 Each step can only be present in a chord once.  The following
398 simply produces the augmented chord, since @code{5+} is
399 interpreted last.
400
401 @lilypond[quote,ragged-right,verbatim]
402 \chordmode { c1:5.5-.5+ }
403 @end lilypond
404
405 Only the second inversion can be created by adding a bass
406 note.  The first inversion requires changing the root of
407 the chord.
408
409 @lilypond[quote,ragged-right,verbatim]
410 \chordmode {
411   c'1: c':/g e:6-3-^5 e:m6-^5
412 }
413 @end lilypond
414
415 @node Displaying chords
416 @subsection Displaying chords
417
418 Chords can be displayed by name, in addition to the standard display
419 as notes on a staff.
420
421 @menu
422 * Printing chord names::
423 * Customizing chord names::
424 @end menu
425
426 @node Printing chord names
427 @unnumberedsubsubsec Printing chord names
428
429 @cindex printing chord names
430 @cindex chord names
431 @cindex chords
432
433 Chord names are printed in the @code{ChordNames} context:
434
435 @lilypond[verbatim,quote,ragged-right]
436 \new ChordNames {
437   \chordmode {
438     c2 f4. g8
439   }
440 }
441 @end lilypond
442
443 Chords can be entered as simultaneous notes or through the use of
444 chord mode.  The displayed chord name will be the same, regardless
445 of the mode of entry, unless there are inversions or added bass notes:
446
447 @lilypond[verbatim,quote,relative=1]
448 <<
449   \new ChordNames {
450     <c e g>2  <f bes c>
451     <f c' e g>1
452     \chordmode {
453       c2 f:sus4 c1:/f
454     }
455   }
456   {
457     <c e g>2  <f bes c>
458     <f, c' e g>1
459     \chordmode {
460       c2 f:sus4 c1:/f
461     }
462   }
463 >>
464 @end lilypond
465
466 @cindex no chord symbol
467 @cindex N.C. symbol
468 @cindex indicating No Chord in ChordNames
469
470 Rests passed to a @code{ChordNames} context will cause the
471 @code{noChordSymbol} markup to be displayed.
472
473 @lilypond[verbatim, quote, relative=1]
474 <<
475   \new ChordNames \chordmode {
476     c1
477     r1
478     g1
479     c1
480   }
481   \chordmode {
482     c1
483     r1
484     g1
485     c1
486   }
487 >>
488 @end lilypond
489
490 @funindex{\chords}
491
492 @code{\chords @{ ... @}} is a shortcut notation for
493 @code{\new ChordNames @{ \chordmode @{ ... @} @}}.
494
495 @lilypond[verbatim,quote,ragged-right]
496 \chords {
497   c2 f4.:m g8:maj7
498 }
499 @end lilypond
500
501 @lilypond[verbatim,quote,ragged-right]
502 \new ChordNames {
503   \chordmode {
504     c2 f4.:m g8:maj7
505   }
506 }
507 @end lilypond
508
509 @snippets
510
511 @c Keep index entries with following snippet
512 @cindex chords, suppressing repeated
513 @funindex chordChanges
514
515 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
516 {showing-chords-at-changes.ly}
517
518 @c @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
519 @c {adding-bar-lines-to-chordnames-context.ly}
520
521 @lilypondfile[verbatim,quote,ragged-right,texidoc,doctitle]
522 {simple-lead-sheet.ly}
523
524
525 @seealso
526 Music Glossary:
527 @rglos{chord}.
528
529 Notation Reference:
530 @ref{Writing music in parallel}.
531
532 Snippets:
533 @rlsr{Chords}.
534
535 Internals Reference:
536 @rinternals{ChordNames},
537 @rinternals{ChordName},
538 @rinternals{Chord_name_engraver},
539 @rinternals{Volta_engraver},
540 @rinternals{Bar_engraver}.
541
542
543 @knownissues
544
545 Chords containing inversions or altered bass notes are not named
546 properly if entered using simultaneous music.
547
548
549 @node Customizing chord names
550 @unnumberedsubsubsec Customizing chord names
551
552 @cindex customizing chord names
553
554 There is no unique system for naming chords.  Different musical
555 traditions use different names for the same set of chords.  There
556 are also different symbols displayed for a given chord name.  The
557 names and symbols displayed for chord names are customizable.
558
559 @cindex jazz chords
560 @cindex chords, jazz
561
562 The basic chord name layout is a system for Jazz music, proposed
563 by Klaus Ignatzek (see @ressay{Literature list}).  The chord naming
564 system can be modified as described below.  An alternate jazz
565 chord system has been developed using these modifications.
566 The Ignatzek and alternate
567 Jazz notation are shown on the chart in @ref{Chord name chart}.
568
569 @c TODO --  Change this so we don't have a non-verbatim example.
570 @c  Make short example in docs, then move longer example to
571 @c  appendix, where the length of the snippet won't matter.
572
573 In addition to the different naming systems, different note names
574 are used for the root in different languages.  The predefined
575 variables @code{\germanChords}, @code{\semiGermanChords},
576 @code{\italianChords} and @code{\frenchChords} set these variables.
577 The effect is demonstrated here:
578
579 @lilypondfile[ragged-right]{chord-names-languages.ly}
580
581
582 @funindex chordNameLowercaseMinor
583
584 German songbooks may indicate minor chords as lowercase letters,
585 without any @var{m} suffix.  This can be obtained by setting the
586 @code{chordNameLowercaseMinor} property:
587
588 @lilypond[verbatim,quote,ragged-right]
589 \chords {
590   \set chordNameLowercaseMinor = ##t
591   c2 d:m e:m f
592 }
593 @end lilypond
594
595 If none of the existing settings give the desired output, the chord
596 name display can be tuned through the following properties.
597
598 @table @code
599
600 @funindex chordRootNamer
601
602 @item chordRootNamer
603
604 The chord name is usually printed as a letter for the root with an
605 optional alteration.  The transformation from pitch to letter is
606 done by this function.  Special note names (for example, the German
607 @q{H} for a B-chord) can be produced by storing a new function in
608 this property.
609
610 @funindex majorSevenSymbol
611
612 @item majorSevenSymbol
613
614 This property contains the markup object used to follow the output
615 of @code{chordRootNamer} to identify a major 7 chord.  Predefined
616 options are @code{whiteTriangleMarkup} and
617 @code{blackTriangleMarkup}.
618
619 @funindex additionalPitchPrefix
620
621 @item additionalPitchPrefix
622
623 When the chord name contains additional pitches, they can optionally
624 be prefixed with some text.  The default is no prefix, in order to
625 avoid too much visual clutter, but for small numbers of additional
626 pitches this can be visually effective.
627
628 @lilypond[verbatim,quote,ragged-right]
629 \new ChordNames {
630   <c e g d'>    % add9
631   \set additionalPitchPrefix = #"add"
632   <c e g d'>    % add9
633 }
634 @end lilypond
635
636 @funindex chordNoteNamer
637
638 @item chordNoteNamer
639
640 When the chord name contains additional pitches other than the root
641 (e.g., an added bass note), this function is used to print the
642 additional pitch.  By default the pitch is printed using
643 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
644 to a specialized function to change this behavior.  For example, the
645 bass note can be printed in lower case.
646
647 @funindex chordNameSeparator
648
649 @item chordNameSeparator
650
651 Different parts of a chord name are normally separated by a small
652 amount of horizontal space.  By setting @code{chordNameSeparator}, you
653 can use any desired markup for a separator.  This does not affect the
654 separator between a chord and its bass note; to customize that, use
655 @code{slashChordSeparator}.
656
657 @lilypond[verbatim,quote,ragged-right]
658 \chords {
659   c4:7.9- c:7.9-/g
660   \set chordNameSeparator = \markup { "/" }
661   \break
662   c4:7.9- c:7.9-/g
663 }
664 @end lilypond
665
666 @funindex slashChordSeparator
667
668 @item slashChordSeparator
669
670 Chords can be played over a bass note other than the conventional root
671 of the chord.  These are known as ``inversions'' or ``slash chords'',
672 because the default way of notating them is with a forward slash
673 between the main chord and the bass note.  Therefore the value of
674 @code{slashChordSeparator} defaults to a forward slash, but you can
675 change it to any markup you choose.
676
677 @lilypond[verbatim,quote,ragged-right]
678 \chords {
679   c4:7.9- c:7.9-/g
680   \set slashChordSeparator = \markup { " over " }
681   \break
682   c4:7.9- c:7.9-/g
683 }
684 @end lilypond
685
686 @funindex chordNameExceptions
687
688 @item chordNameExceptions
689
690 This property is a list of pairs.  The first item in each pair
691 is a set of pitches used to identify the steps present in the chord.
692 The second item is a markup that will follow the @code{chordRootNamer}
693 output to create the chord name.
694
695 @funindex minorChordModifier
696
697 @item minorChordModifier
698
699 Minor chords are often denoted via a @q{m} suffix to the right of the
700 root of the chord.  However some idioms prefer other suffices, such as
701 a minus sign.
702
703 @lilypond[verbatim,quote,ragged-right]
704 \chords {
705   c4:min f:min7
706   \set minorChordModifier = \markup { "-" }
707   \break
708   c4:min f:min7
709 }
710 @end lilypond
711
712 @funindex chordPrefixSpacer
713
714 @item chordPrefixSpacer
715
716 The modifier for minor chords as determined by
717 @code{minorChordModifier} is usually printed immediately to the right
718 of the root of the chord.  A spacer can be placed between the root and
719 the modifier by setting @code{chordPrefixSpacer}.  The spacer is not
720 used when the root is altered.
721
722 @end table
723
724
725 @predefined
726 @funindex major seven symbols
727 @code{\whiteTriangleMarkup},
728 @code{\blackTriangleMarkup},
729 @funindex \germanChords
730 @code{\germanChords},
731 @funindex \semiGermanChords
732 @code{\semiGermanChords},
733 @funindex \italianChords
734 @code{\italianChords},
735 @funindex \frenchChords
736 @code{\frenchChords}.
737 @endpredefined
738
739
740 @snippets
741
742 @cindex exceptions, chord names.
743 @lilypondfile[verbatim,quote,texidoc,doctitle]
744 {chord-name-exceptions.ly}
745
746 @c TODO - tweak snippet to use \blackTriangleMarkup as well
747 @lilypondfile[verbatim,quote,texidoc,doctitle]
748 {chord-name-major7.ly}
749
750 @lilypondfile[verbatim,quote,texidoc,doctitle]
751 {adding-bar-lines-to-chordnames-context.ly}
752
753 @lilypondfile[verbatim,quote,texidoc,doctitle]
754 {volta-below-chords.ly}
755
756 @lilypondfile[verbatim,quote,texidoc,doctitle]
757 {changing-chord-separator.ly}
758
759
760 @seealso
761 Notation Reference:
762 @ref{Chord name chart},
763 @ref{Common chord modifiers}.
764
765 Essay on automated music engraving:
766 @ressay{Literature list}.
767
768 Installed Files:
769 @file{scm/chords-ignatzek.scm},
770 @file{scm/chord-entry.scm},
771 @file{ly/chord-modifier-init.ly}.
772
773 Snippets:
774 @rlsr{Chords}.
775
776 @c Internals Reference:
777 @c @r internals{}.
778
779
780 @knownissues
781
782 Chord names are determined from both the pitches that are present
783 in the chord and the information on the chord structure that may
784 have been entered in @code{\chordmode}.  If the simultaneous pitches
785 method of entering chords is used, undesired names result from
786 inversions or bass notes.
787
788 @lilypond[quote,ragged-right,verbatim]
789 myChords = \relative c' {
790   \chordmode { c1 c/g c/f }
791   <c e g>1 <g c e> <f c' e g>
792 }
793 <<
794   \new ChordNames { \myChords }
795   \new Staff { \myChords }
796 >>
797 @end lilypond
798
799
800 @node Figured bass
801 @subsection Figured bass
802
803 @lilypondfile[quote]{figured-bass-headword.ly}
804
805 Figured bass notation can be displayed.
806
807 @menu
808 * Introduction to figured bass::
809 * Entering figured bass::
810 * Displaying figured bass::
811 @end menu
812
813 @node Introduction to figured bass
814 @unnumberedsubsubsec Introduction to figured bass
815
816 @cindex Basso continuo
817 @cindex Thorough bass
818 @cindex Figured bass
819 @cindex Bass, thorough
820 @cindex Bass, figured
821
822 @c TODO: musicological blurb about FB
823
824
825 LilyPond has support for figured bass, also called thorough bass
826 or basso continuo:
827
828 @lilypond[quote,ragged-right,verbatim]
829 <<
830   \new Voice { \clef bass dis4 c d ais g fis}
831   \new FiguredBass {
832     \figuremode {
833       < 6 >4 < 7\+ >8 < 6+ [_!] >
834       < 6 >4 <6 5 [3+] >
835       < _ >4 < 6 5/>4
836     }
837   }
838 >>
839 @end lilypond
840
841 The support for figured bass consists of two parts: there is an
842 input mode, introduced by @code{\figuremode}, that accepts
843 entry of bass figures, and there is a context named
844 @code{FiguredBass} that takes care of displaying
845 @code{BassFigure} objects.  Figured bass can also be displayed
846 in @code{Staff} contexts.
847
848 @code{\figures@{ ... @}} is a shortcut notation for
849 @code{\new FiguredBass @{ \figuremode @{ ... @} @}}.
850
851
852 Although the support for figured bass may superficially resemble chord
853 support, it is much simpler.  @code{\figuremode} mode simply
854 stores the figures and the @code{FiguredBass} context prints them
855 as entered.  There is no conversion to pitches.
856
857 @ignore
858 Figures are created as markup texts.  Any of the standard markup
859 properties can be used to modify the display of figures.  For
860 example, the vertical spacing of the figures may be set with
861 @code{baseline-skip}.
862 @end ignore
863
864
865 @seealso
866 Music Glossary:
867 @rglos{figured bass}.
868
869 Snippets:
870 @rlsr{Chords}.
871
872
873 @node Entering figured bass
874 @unnumberedsubsubsec Entering figured bass
875
876 @code{\figuremode} is used to switch the input mode to figure mode.
877 More information on different input modes can be
878 found at @ref{Input modes}.
879
880 In figure mode, a group of bass figures is delimited by
881 @code{<} and @code{>}.  The duration is entered after the @code{>}.
882
883 @lilypond[verbatim,quote,ragged-right]
884 \new FiguredBass {
885   \figuremode {
886     <6 4>2
887   }
888 }
889 @end lilypond
890
891
892 Accidentals (including naturals) can be added to figures:
893
894 @lilypond[verbatim,quote,ragged-right]
895 \figures {
896   <7! 6+ 4-> <5++> <3-->
897 }
898 @end lilypond
899
900 Augmented and diminished steps can be indicated:
901
902 @lilypond[verbatim,quote,ragged-right]
903 \figures {
904   <6\+ 5/> <7/>
905 }
906 @end lilypond
907
908 A backward slash through a figure (typically used for raised
909 sixth steps) can be created:
910
911 @lilypond[verbatim,quote,ragged-right]
912 \figures {
913   <6> <6\\>
914 }
915 @end lilypond
916
917 Vertical spaces and brackets can be included in figures:
918
919 @lilypond[verbatim,quote,ragged-right]
920 \figures {
921   <[12 _!] 8 [6  4]>
922 }
923 @end lilypond
924
925 Any text markup can be inserted as a figure:
926
927 @lilypond[verbatim,quote,ragged-right]
928 \figures {
929   <\markup { \tiny \number 6 \super (1) } 5>
930 }
931 @end lilypond
932
933 @c NOTE: We need to include notes any time we use extenders to
934 @c avoid extraneous staff creation due to Staff.use... in
935 @c \bassFigureExtendersOn
936
937 Continuation lines can be used to indicate repeated figures:
938
939 @lilypond[verbatim,quote,ragged-right]
940 <<
941   {
942     \clef bass
943     e4 d c b,
944     e4 d c b,
945   }
946   \figures {
947     \bassFigureExtendersOn
948     <6 4>4 <6 3> <7 3> <7 3>
949     \bassFigureExtendersOff
950     <6 4>4 <6 3> <7 3> <7 3>
951   }
952 >>
953 @end lilypond
954
955 @noindent
956 In this case, the extender lines replace existing figures,
957 unless the continuation lines have been explicitly terminated.
958
959 @lilypond[verbatim,quote,ragged-right]
960 <<
961   \figures {
962     \bassFigureExtendersOn
963     <6 4>4 <6 4> <6\! 4\!> <6 4>
964   }
965   {
966     \clef bass
967     d4 d c c
968   }
969 >>
970 @end lilypond
971
972 The table below summarizes the figure modifiers available.
973
974 @multitable @columnfractions .1 .5 .4
975
976 @item
977 @b{Modifier}
978 @tab
979 @b{Purpose}
980 @tab
981 @b{Example}
982
983 @item
984 +, -, !
985 @tab
986 Accidentals
987 @tab
988 @lilypond[line-width=4\cm]
989 \figures {
990   <7! 6+ 4-> <5++> <3-->
991 }
992 @end lilypond
993
994 @item
995 \+, /
996 @tab
997 Augmented and diminished steps
998 @tab
999 @lilypond[line-width=4\cm]
1000 \figures {
1001   <6\+ 5/> <7/>
1002 }
1003 @end lilypond
1004
1005 @item
1006 \\
1007 @tab
1008 Raised sixth step
1009 @tab
1010 @lilypond[line-width=4\cm]
1011 \figures {
1012   <6\\>
1013 }
1014 @end lilypond
1015
1016 @item
1017 \!
1018 @tab
1019 End of continuation line
1020 @tab
1021 @lilypond[line-width=4\cm]
1022 <<
1023   \figures {
1024     \bassFigureExtendersOn
1025     <6 4> <6 4> <6\! 4\!> <6 4>
1026   }
1027   {
1028     \clef bass
1029     d d c c
1030   }
1031 >>
1032 @end lilypond
1033
1034 @end multitable
1035
1036
1037 @predefined
1038 @cindex figured bass extender lines
1039 @code{\bassFigureExtendersOn},
1040 @code{\bassFigureExtendersOff}.
1041 @endpredefined
1042
1043
1044 @snippets
1045 @lilypondfile[verbatim,quote,texidoc,doctitle]
1046 {changing-the-positions-of-figured-bass-alterations.ly}
1047
1048
1049 @seealso
1050 @c Music Glossary:
1051 @c @rglos{}.
1052 @c
1053 @c Learning Manual:
1054 @c @rlearning{}.
1055 @c
1056 @c Notation Reference:
1057 @c @ref{}.
1058 @c
1059 @c Application Usage:
1060 @c @rprogram{}.
1061 @c
1062 @c Installed Files:
1063 @c @file{}.
1064 @c
1065 Snippets:
1066 @rlsr{Chords}.
1067
1068 Internals Reference:
1069 @rinternals{BassFigure},
1070 @rinternals{BassFigureAlignment},
1071 @rinternals{BassFigureLine},
1072 @rinternals{BassFigureBracket},
1073 @rinternals{BassFigureContinuation},
1074 @rinternals{FiguredBass}.
1075
1076
1077 @c @knownissues
1078
1079
1080 @node Displaying figured bass
1081 @unnumberedsubsubsec Displaying figured bass
1082
1083 Figured bass can be displayed using the @code{FiguredBass} context,
1084 or in most staff contexts.
1085
1086 When displayed in a @code{FiguredBass} context, the vertical location
1087 of the figures is independent of the notes on the staff.
1088
1089 @lilypond[verbatim,ragged-right,quote]
1090 <<
1091   \relative c'' {
1092     c4 c'8 r8 c,4 c'
1093   }
1094   \new FiguredBass {
1095     \figuremode {
1096       <4>4 <10 6>8 s8
1097       <6 4>4 <6 4>
1098     }
1099   }
1100 >>
1101 @end lilypond
1102
1103 @noindent
1104 In the example above, the @code{FiguredBass} context must be
1105 explicitly instantiated to avoid creating a second (empty) staff.
1106
1107
1108 Figured bass can also be added to @code{Staff} contexts
1109 directly.  In this case, the vertical position of the
1110 figures is adjusted automatically.
1111
1112 @lilypond[verbatim,ragged-right,quote]
1113 <<
1114   \new Staff = myStaff
1115   \figuremode {
1116     <4>4 <10 6>8 s8
1117     <6 4>4 <6 4>
1118   }
1119   %% Put notes on same Staff as figures
1120   \context Staff = myStaff
1121   {
1122     \clef bass
1123     c4 c'8 r8 c4 c'
1124   }
1125 >>
1126 @end lilypond
1127
1128
1129 When added in a @code{Staff} context, figured bass can be displayed above
1130 or below the staff.
1131
1132 @lilypond[verbatim,ragged-right,quote]
1133 <<
1134   \new Staff = myStaff
1135   \figuremode {
1136     <4>4 <10 6>8 s8
1137     \bassFigureStaffAlignmentDown
1138     <6 4>4 <6 4>
1139   }
1140   %% Put notes on same Staff as figures
1141   \context Staff = myStaff
1142   {
1143     \clef bass
1144     c4 c'8 r8 c4 c'
1145   }
1146 >>
1147 @end lilypond
1148
1149
1150 @predefined
1151 @cindex figured bass alignment
1152 @code{\bassFigureStaffAlignmentDown},
1153 @code{\bassFigureStaffAlignmentUp},
1154 @code{\bassFigureStaffAlignmentNeutral}.
1155 @endpredefined
1156
1157
1158 @c @snippets
1159
1160
1161 @seealso
1162 @c Music Glossary:
1163 @c @rglos{}.
1164 @c
1165 @c Learning Manual:
1166 @c @rlearning{}.
1167 @c
1168 @c Notation Reference:
1169 @c @ref{}.
1170 @c
1171 @c Application Usage:
1172 @c @rprogram{}.
1173 @c
1174 @c Installed Files:
1175 @c @file{}.
1176 @c
1177 Snippets:
1178 @rlsr{Chords}.
1179
1180 Internals Reference:
1181 @rinternals{BassFigure},
1182 @rinternals{BassFigureAlignment},
1183 @rinternals{BassFigureLine},
1184 @rinternals{BassFigureBracket},
1185 @rinternals{BassFigureContinuation},
1186 @rinternals{FiguredBass}.
1187
1188
1189 @knownissues
1190
1191 To ensure that continuation lines work properly, it is
1192 safest to use the same rhythm in the figure line as in
1193 the bass line.
1194
1195 @lilypond[verbatim,ragged-right,quote]
1196 <<
1197   {
1198     \clef bass
1199     \repeat unfold 4 { f16. g32 } f8. es16 d8 es
1200   }
1201   \figures {
1202     \bassFigureExtendersOn
1203     % The extenders are correct here, with the same rhythm as the bass
1204     \repeat unfold 4 { <6 4->16. <6 4->32 }
1205     <5>8. r16 <6>8 <6\! 5->
1206   }
1207 >>
1208 <<
1209   {
1210     \clef bass
1211     \repeat unfold 4 { f16. g32 } f8. es16 d8 es
1212   }
1213   \figures {
1214     \bassFigureExtendersOn
1215     % The extenders are incorrect here, even though the timing is the same
1216     <6 4->4 <6 4->4
1217     <5>8. r16 <6>8 <6\! 5->
1218   }
1219 >>
1220 @end lilypond
1221
1222 When using extender lines, adjacent figures with the same number in
1223 a different figure location can cause the figure positions to invert.
1224
1225 @lilypond[verbatim,ragged-right,quote,relative=1]
1226 <<
1227   { fis4 g g, e' }
1228   \figures {
1229     \bassFigureExtendersOn
1230     <6 5>4 <5\! 4> < 5 _!> <6>
1231   }
1232 >>
1233 @end lilypond
1234
1235 To avoid this problem, simply turn on extenders after the figure that
1236 begins the extender line and turn them off at the end of the extender line.
1237
1238 @lilypond[verbatim,ragged-right,quote,relative=1]
1239 <<
1240   { fis4 g g, e' }
1241   \figures {
1242     <6 5>4 <5 4>
1243     \bassFigureExtendersOn
1244     < 5 _!>4 <6>
1245     \bassFigureExtendersOff
1246   }
1247 >>
1248 @end lilypond
1249