]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/notation/chords.itely
Docs: Get rid of lilyquote snippet option, replaced by ordinary quote
[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 chordNoteNamer
620
621 @item chordNoteNamer
622
623 When the chord name contains additional pitches other than the root
624 (e.g., an added bass note), this function is used to print the
625 additional pitch.  By default the pitch is printed using
626 @code{chordRootNamer}.  The @code{chordNoteNamer} property can be set
627 to a specialized function to change this behavior.  For example, the
628 bass note can be printed in lower case.
629
630 @funindex chordNameSeparator
631
632 @item chordNameSeparator
633
634 Different parts of a chord name are normally separated by a slash.
635 By setting @code{chordNameSeparator}, you can use any desired markup
636 for a separator.
637
638 @funindex chordNameExceptions
639
640 @item chordNameExceptions
641
642 This property is a list of pairs.  The first item in each pair
643 is a set of pitches used to identify the steps present in the chord.
644 The second item is a markup that will follow the @code{chordRootNamer}
645 output to create the chord name.
646
647 @funindex chordPrefixSpacer
648 @item chordPrefixSpacer
649
650 The @q{m} for minor chords is usually printed immediately to the
651 right of the root of the chord.  A spacer can be placed between
652 the root and @q{m} by setting @code{chordPrefixSpacer}.
653 The spacer is not used when the root is altered.
654
655 @end table
656
657
658 @predefined
659 @funindex major seven symbols
660 @code{\whiteTriangleMarkup},
661 @code{\blackTriangleMarkup},
662 @funindex \germanChords
663 @code{\germanChords},
664 @funindex \semiGermanChords
665 @code{\semiGermanChords},
666 @funindex \italianChords
667 @code{\italianChords},
668 @funindex \frenchChords
669 @code{\frenchChords}.
670 @endpredefined
671
672
673 @snippets
674
675 @cindex exceptions, chord names.
676 @lilypondfile[verbatim,quote,texidoc,doctitle]
677 {chord-name-exceptions.ly}
678
679 @c TODO - tweak snippet to use \blackTriangleMarkup as well
680 @lilypondfile[verbatim,quote,texidoc,doctitle]
681 {chord-name-major7.ly}
682
683 @lilypondfile[verbatim,quote,texidoc,doctitle]
684 {adding-bar-lines-to-chordnames-context.ly}
685
686 @lilypondfile[verbatim,quote,texidoc,doctitle]
687 {volta-below-chords.ly}
688
689 @lilypondfile[verbatim,quote,texidoc,doctitle]
690 {changing-chord-separator.ly}
691
692
693 @seealso
694 Notation Reference:
695 @ref{Chord name chart},
696 @ref{Common chord modifiers}.
697
698 Essay on automated music engraving:
699 @ressay{Literature list}.
700
701 Installed Files:
702 @file{scm/chords-ignatzek.scm},
703 @file{scm/chord-entry.scm},
704 @file{ly/chord-modifier-init.ly}.
705
706 Snippets:
707 @rlsr{Chords}.
708
709 @c Internals Reference:
710 @c @r internals{}.
711
712
713 @knownissues
714
715 Chord names are determined from both the pitches that are present
716 in the chord and the information on the chord structure that may
717 have been entered in @code{\chordmode}.  If the simultaneous pitches
718 method of entering chords is used, undesired names result from
719 inversions or bass notes.
720
721 @lilypond[quote,ragged-right,verbatim]
722 myChords = \relative c' {
723   \chordmode { c1 c/g c/f }
724   <c e g>1 <g c e> <f c' e g>
725 }
726 <<
727   \new ChordNames { \myChords }
728   \new Staff { \myChords }
729 >>
730 @end lilypond
731
732
733 @node Figured bass
734 @subsection Figured bass
735
736 @lilypondfile[quote]{figured-bass-headword.ly}
737
738 Figured bass notation can be displayed.
739
740 @menu
741 * Introduction to figured bass::
742 * Entering figured bass::
743 * Displaying figured bass::
744 @end menu
745
746 @node Introduction to figured bass
747 @unnumberedsubsubsec Introduction to figured bass
748
749 @cindex Basso continuo
750 @cindex Thorough bass
751 @cindex Figured bass
752 @cindex Bass, thorough
753 @cindex Bass, figured
754
755 @c TODO: musicological blurb about FB
756
757
758 LilyPond has support for figured bass, also called thorough bass
759 or basso continuo:
760
761 @lilypond[quote,ragged-right,verbatim]
762 <<
763   \new Voice { \clef bass dis4 c d ais g fis}
764   \new FiguredBass {
765     \figuremode {
766       < 6 >4 < 7\+ >8 < 6+ [_!] >
767       < 6 >4 <6 5 [3+] >
768       < _ >4 < 6 5/>4
769     }
770   }
771 >>
772 @end lilypond
773
774 The support for figured bass consists of two parts: there is an
775 input mode, introduced by @code{\figuremode}, that accepts
776 entry of bass figures, and there is a context named
777 @code{FiguredBass} that takes care of displaying
778 @code{BassFigure} objects.  Figured bass can also be displayed
779 in @code{Staff} contexts.
780
781 @code{\figures@{ ... @}} is a shortcut notation for
782 @code{\new FiguredBass @{ \figuremode @{ ... @} @}}.
783
784
785 Although the support for figured bass may superficially resemble chord
786 support, it is much simpler.  @code{\figuremode} mode simply
787 stores the figures and the @code{FiguredBass} context prints them
788 as entered.  There is no conversion to pitches.
789
790 @ignore
791 Figures are created as markup texts.  Any of the standard markup
792 properties can be used to modify the display of figures.  For
793 example, the vertical spacing of the figures may be set with
794 @code{baseline-skip}.
795 @end ignore
796
797
798 @seealso
799 Music Glossary:
800 @rglos{figured bass}.
801
802 Snippets:
803 @rlsr{Chords}.
804
805
806 @node Entering figured bass
807 @unnumberedsubsubsec Entering figured bass
808
809 @code{\figuremode} is used to switch the input mode to figure mode.
810 More information on different input modes can be
811 found at @ref{Input modes}.
812
813 In figure mode, a group of bass figures is delimited by
814 @code{<} and @code{>}.  The duration is entered after the @code{>}.
815
816 @lilypond[verbatim,quote,ragged-right]
817 \new FiguredBass {
818   \figuremode {
819     <6 4>2
820   }
821 }
822 @end lilypond
823
824
825 Accidentals (including naturals) can be added to figures:
826
827 @lilypond[verbatim,quote,ragged-right]
828 \figures {
829   <7! 6+ 4-> <5++> <3-->
830 }
831 @end lilypond
832
833 Augmented and diminished steps can be indicated:
834
835 @lilypond[verbatim,quote,ragged-right]
836 \figures {
837   <6\+ 5/> <7/>
838 }
839 @end lilypond
840
841 A backward slash through a figure (typically used for raised
842 sixth steps) can be created:
843
844 @lilypond[verbatim,quote,ragged-right]
845 \figures {
846   <6> <6\\>
847 }
848 @end lilypond
849
850 Vertical spaces and brackets can be included in figures:
851
852 @lilypond[verbatim,quote,ragged-right]
853 \figures {
854   <[12 _!] 8 [6  4]>
855 }
856 @end lilypond
857
858 Any text markup can be inserted as a figure:
859
860 @lilypond[verbatim,quote,ragged-right]
861 \figures {
862   <\markup { \tiny \number 6 \super (1) } 5>
863 }
864 @end lilypond
865
866 @c NOTE: We need to include notes any time we use extenders to
867 @c avoid extraneous staff creation due to Staff.use... in
868 @c \bassFigureExtendersOn
869
870 Continuation lines can be used to indicate repeated figures:
871
872 @lilypond[verbatim,quote,ragged-right]
873 <<
874   {
875     \clef bass
876     e4 d c b,
877     e4 d c b,
878   }
879   \figures {
880     \bassFigureExtendersOn
881     <6 4>4 <6 3> <7 3> <7 3>
882     \bassFigureExtendersOff
883     <6 4>4 <6 3> <7 3> <7 3>
884   }
885 >>
886 @end lilypond
887
888 @noindent
889 In this case, the extender lines replace existing figures,
890 unless the continuation lines have been explicitly terminated.
891
892 @lilypond[verbatim,quote,ragged-right]
893 <<
894   \figures {
895     \bassFigureExtendersOn
896     <6 4>4 <6 4> <6\! 4\!> <6 4>
897   }
898   {
899     \clef bass
900     d4 d c c
901   }
902 >>
903 @end lilypond
904
905 The table below summarizes the figure modifiers available.
906
907 @multitable @columnfractions .1 .5 .4
908
909 @item
910 @b{Modifier}
911 @tab
912 @b{Purpose}
913 @tab
914 @b{Example}
915
916 @item
917 +, -, !
918 @tab
919 Accidentals
920 @tab
921 @lilypond[line-width=4\cm]
922 \figures {
923   <7! 6+ 4-> <5++> <3-->
924 }
925 @end lilypond
926
927 @item
928 \+, /
929 @tab
930 Augmented and diminished steps
931 @tab
932 @lilypond[line-width=4\cm]
933 \figures {
934   <6\+ 5/> <7/>
935 }
936 @end lilypond
937
938 @item
939 \\
940 @tab
941 Raised sixth step
942 @tab
943 @lilypond[line-width=4\cm]
944 \figures {
945   <6\\>
946 }
947 @end lilypond
948
949 @item
950 \!
951 @tab
952 End of continuation line
953 @tab
954 @lilypond[line-width=4\cm]
955 <<
956   \figures {
957     \bassFigureExtendersOn
958     <6 4> <6 4> <6\! 4\!> <6 4>
959   }
960   {
961     \clef bass
962     d d c c
963   }
964 >>
965 @end lilypond
966
967 @end multitable
968
969
970 @predefined
971 @cindex figured bass extender lines
972 @code{\bassFigureExtendersOn},
973 @code{\bassFigureExtendersOff}.
974 @endpredefined
975
976
977 @snippets
978 @lilypondfile[verbatim,quote,texidoc,doctitle]
979 {changing-the-positions-of-figured-bass-alterations.ly}
980
981
982 @seealso
983 @c Music Glossary:
984 @c @rglos{}.
985 @c
986 @c Learning Manual:
987 @c @rlearning{}.
988 @c
989 @c Notation Reference:
990 @c @ref{}.
991 @c
992 @c Application Usage:
993 @c @rprogram{}.
994 @c
995 @c Installed Files:
996 @c @file{}.
997 @c
998 Snippets:
999 @rlsr{Chords}.
1000
1001 Internals Reference:
1002 @rinternals{BassFigure},
1003 @rinternals{BassFigureAlignment},
1004 @rinternals{BassFigureLine},
1005 @rinternals{BassFigureBracket},
1006 @rinternals{BassFigureContinuation},
1007 @rinternals{FiguredBass}.
1008
1009
1010 @c @knownissues
1011
1012
1013 @node Displaying figured bass
1014 @unnumberedsubsubsec Displaying figured bass
1015
1016 Figured bass can be displayed using the @code{FiguredBass} context,
1017 or in most staff contexts.
1018
1019 When displayed in a @code{FiguredBass} context, the vertical location
1020 of the figures is independent of the notes on the staff.
1021
1022 @lilypond[verbatim,ragged-right,quote]
1023 <<
1024   \relative c'' {
1025     c4 c'8 r8 c,4 c'
1026   }
1027   \new FiguredBass {
1028     \figuremode {
1029       <4>4 <10 6>8 s8
1030       <6 4>4 <6 4>
1031     }
1032   }
1033 >>
1034 @end lilypond
1035
1036 @noindent
1037 In the example above, the @code{FiguredBass} context must be
1038 explicitly instantiated to avoid creating a second (empty) staff.
1039
1040
1041 Figured bass can also be added to @code{Staff} contexts
1042 directly.  In this case, the vertical position of the
1043 figures is adjusted automatically.
1044
1045 @lilypond[verbatim,ragged-right,quote]
1046 <<
1047   \new Staff = myStaff
1048   \figuremode {
1049     <4>4 <10 6>8 s8
1050     <6 4>4 <6 4>
1051   }
1052   %% Put notes on same Staff as figures
1053   \context Staff = myStaff
1054   {
1055     \clef bass
1056     c4 c'8 r8 c4 c'
1057   }
1058 >>
1059 @end lilypond
1060
1061
1062 When added in a @code{Staff} context, figured bass can be displayed above
1063 or below the staff.
1064
1065 @lilypond[verbatim,ragged-right,quote]
1066 <<
1067   \new Staff = myStaff
1068   \figuremode {
1069     <4>4 <10 6>8 s8
1070     \bassFigureStaffAlignmentDown
1071     <6 4>4 <6 4>
1072   }
1073   %% Put notes on same Staff as figures
1074   \context Staff = myStaff
1075   {
1076     \clef bass
1077     c4 c'8 r8 c4 c'
1078   }
1079 >>
1080 @end lilypond
1081
1082
1083 @predefined
1084 @cindex figured bass alignment
1085 @code{\bassFigureStaffAlignmentDown},
1086 @code{\bassFigureStaffAlignmentUp},
1087 @code{\bassFigureStaffAlignmentNeutral}.
1088 @endpredefined
1089
1090
1091 @c @snippets
1092
1093
1094 @seealso
1095 @c Music Glossary:
1096 @c @rglos{}.
1097 @c
1098 @c Learning Manual:
1099 @c @rlearning{}.
1100 @c
1101 @c Notation Reference:
1102 @c @ref{}.
1103 @c
1104 @c Application Usage:
1105 @c @rprogram{}.
1106 @c
1107 @c Installed Files:
1108 @c @file{}.
1109 @c
1110 Snippets:
1111 @rlsr{Chords}.
1112
1113 Internals Reference:
1114 @rinternals{BassFigure},
1115 @rinternals{BassFigureAlignment},
1116 @rinternals{BassFigureLine},
1117 @rinternals{BassFigureBracket},
1118 @rinternals{BassFigureContinuation},
1119 @rinternals{FiguredBass}.
1120
1121
1122 @knownissues
1123
1124 To ensure that continuation lines work properly, it is
1125 safest to use the same rhythm in the figure line as in
1126 the bass line.
1127
1128 @lilypond[verbatim,ragged-right,quote]
1129 <<
1130   {
1131     \clef bass
1132     \repeat unfold 4 { f16. g32 } f8. es16 d8 es
1133   }
1134   \figures {
1135     \bassFigureExtendersOn
1136     % The extenders are correct here, with the same rhythm as the bass
1137     \repeat unfold 4 { <6 4->16. <6 4->32 }
1138     <5>8. r16 <6>8 <6\! 5->
1139   }
1140 >>
1141 <<
1142   {
1143     \clef bass
1144     \repeat unfold 4 { f16. g32 } f8. es16 d8 es
1145   }
1146   \figures {
1147     \bassFigureExtendersOn
1148     % The extenders are incorrect here, even though the timing is the same
1149     <6 4->4 <6 4->4
1150     <5>8. r16 <6>8 <6\! 5->
1151   }
1152 >>
1153 @end lilypond
1154
1155 When using extender lines, adjacent figures with the same number in
1156 a different figure location can cause the figure positions to invert.
1157
1158 @lilypond[verbatim,ragged-right,quote,relative=1]
1159 <<
1160   { fis4 g g, e' }
1161   \figures {
1162     \bassFigureExtendersOn
1163     <6 5>4 <5\! 4> < 5 _!> <6>
1164   }
1165 >>
1166 @end lilypond
1167
1168 To avoid this problem, simply turn on extenders after the figure that
1169 begins the extender line and turn them off at the end of the extender line.
1170
1171 @lilypond[verbatim,ragged-right,quote,relative=1]
1172 <<
1173   { fis4 g g, e' }
1174   \figures {
1175     <6 5>4 <5 4>
1176     \bassFigureExtendersOn
1177     < 5 _!>4 <6>
1178     \bassFigureExtendersOff
1179   }
1180 >>
1181 @end lilypond
1182