References notes and floats/Footnotes/How-to guides/Formatting footnotes

Unofficial ConTeXt Wiki mirror

Last modified: 2026-08-29

Work in progress.

This orientation page and the related guides are currently being drafted and reviewed. Please feel free to edit, correct, or improve them.

Footnotes in ConTeXt  ·  Overview  ·  Tutorial  ·  How-to guides  ·  Formatting footnotes  ·  Reference  ·  Explanation  ·  Glossary

Guide 3 — Basic note operations  ·  Previous: Separating a note mark from its text  ·  How-to guides overview  ·  Next: Placing footnotes at the end of a section or chapter

1. Goal

Control the visual presentation of ordinary footnotes without changing their logical structure.

This guide shows how to configure:

Result

Footnotes can be adapted to the typographical requirements of a publication while their marks, references, and note text retain the same logical structure.

2. Distinguish note settings from notation settings

Footnote formatting mainly involves two related setup commands:

Command Main role
\setupnote[footnote][...] Configures the note series, including its placement, body font, alignment, columns, paragraph form, and composition behaviour.
\setupnotation[footnote][...] Configures the visible structure of each note entry and the presentation of its printed number.

A practical distinction

Use \setupnote for the note series as a whole.

Use \setupnotation for the visible arrangement of each note entry and its number.

Some typographical results depend on settings from both commands. Test combinations in the actual page layout before applying them to a complete document.

3. Change the footnote body font

Use the bodyfont key:

3.1. MWE: smaller note text

The value small selects the smaller size defined by the current body-font environment. It is not an absolute point size.

Keep notes readable

Footnotes are often smaller than the main text, but excessive reduction makes long or densely argued notes difficult to read.

4. Apply local formatting inside a note

Ordinary ConTeXt formatting commands may be used inside note text.

4.1. MWE: local emphasis and font changes

Apply emphasis, boldface, quotation marks, and titles according to the same editorial rules used in the main text.

5. Change interline spacing

A named setup can modify interline spacing only while note entries are being composed.

5.1. MWE: independent interline spacing

The value 2.8ex is illustrative. Adapt it to the selected font, note size, and page width.

Why use a named setup?

The named setup isolates the interline configuration and applies it while ConTeXt is composing the footnote entries.

6. Control alignment and hyphenation

Footnote entries may use alignment and hyphenation settings different from those of the main text.

6.1. MWE: independent note alignment

The exact result depends on:

Test with the correct document language

A hyphenation example is meaningful only when the relevant language and hyphenation patterns are active.

7. Position the note number

The printed number within each note entry can be positioned with \setupnotation.

7.1. Reserve space for the number

The width key reserves horizontal space for the number.

Test the width with realistic numbers

A width that is sufficient for notes 1–9 may be too narrow for notes 100–999.

7.2. Control the distance between number and text

The distance key controls the horizontal space between the printed number and the note text.

Choose a distance that separates the number clearly without creating an excessive gap.

The effect of distance depends partly on the selected notation alternative and number location.

7.3. Apply a custom command to the note number

A command may be used to add typographical material to the printed number.

\define[1]\MyFootnoteNumber
  {\hbox to 1.5em{#1.\hss}}

The argument #1 contains the printed note number.

Test custom number commands carefully

A fixed-width command must accommodate the largest expected number and remain compatible with the selected notation alternative.

8. Set footnotes in several columns

When a page contains many short notes, the note block may be divided into columns.

8.1. MWE: two-column footnotes

The setting:

n=2

requests two columns in the footnote block.

Best suited to short notes

Columns work well for numerous compact entries. Long discursive notes are generally easier to read in a single column.

The result also depends on the available page width and the amount of note material.

9. Set footnotes in paragraph form

Successive note entries can be composed as a continuous paragraph rather than as separate blocks.

This is useful for compact textual notes and critical apparatuses.

9.1. MWE: paragraph-form footnotes

The settings have complementary roles:

Setting Function
paragraph=yes Composes successive note entries in paragraph form.
alternative=serried Uses a compact arrangement suited to consecutive entries.
width=broad Provides flexible space for the printed number.
distance=.5em Controls the distance between the number and note text.
display=no Prevents each note entry from behaving as a separate displayed block.

Paragraph form is especially useful for:

Do not use paragraph form for long discursive notes

A sequence of long notes composed in one paragraph quickly becomes difficult to read and navigate.

10. Format several note series independently

Each custom note series may have its own body font, number conversion, and notation style.

This section concerns only presentation. For the creation and management of several series, see:

10.1. MWE: three independently formatted series

The visual differences express the distinct function of each note series while preserving their structural independence.

Configure each series by name

Settings applied to footnote do not automatically replace settings explicitly applied to EdNote or TradNote.

11. Common mistakes

11.1. Applying a setting at the wrong level

Body font, columns, alignment, and paragraph form belong primarily to \setupnote.

Number position, number conversion, spacing, and notation alternatives belong primarily to \setupnotation.

11.2. Making note text too small

A smaller body font must remain readable at the final printed size.

Always assess the result on paper as well as on screen.

11.3. Reserving too little width for numbers

Test the layout with the largest expected note number.

A document with hundreds of notes requires more space than a short example.

11.4. Combining columns with long notes

Columns may create narrow measures, awkward breaks, and fragmented reading when the notes are discursive.

11.5. Using paragraph form without suitable spacing

Paragraph form usually works best with a compact notation alternative and carefully chosen spacing between numbers, note text, and successive entries.

11.6. Formatting a custom series under the wrong name

Use exactly the same series name in:

\definenote
  [EdNote]
  [footnote]

\setupnote
  [EdNote]
  [...]

\setupnotation
  [EdNote]
  [...]

Most frequent cause of unexpected output

A setting may be valid but applied to the wrong level or to the wrong note series.

Check both the setup command and the series name.

12. Complete example

The following MWE combines a restrained set of commonly useful formatting choices:

12.1. MWE: a compact and readable footnote block

Compile the example and check that:

  1. the note entries use the smaller body font;
  2. the notes have independent interline spacing;
  3. successive entries are composed in paragraph form;
  4. the notation remains compact;
  5. the spacing between numbers and note text is consistent;
  6. the resulting block remains readable.

13. What this guide has established

To format footnotes:

  1. use \setupnote for series-wide composition settings;
  2. use \setupnotation for the visible arrangement of note entries and numbers;
  3. use bodyfont to change the note-text size;
  4. apply a named setup for independent interline spacing;
  5. configure alignment and hyphenation separately when needed;
  6. reserve sufficient width for the largest expected number;
  7. use n to request several columns;
  8. use paragraph=yes with suitable notation settings for paragraph form;
  9. configure each custom note series independently.

The central principle is to separate editorial structure from typographical presentation.

Formatting should clarify the note system without obscuring the relation between note marks, note text, and note entries.

14. Next steps

14.1. Continue with the next guide

14.2. Continue with related tasks

14.3. Consult the documentation

Guide 3 — Basic note operations  ·  Previous: Separating a note mark from its text  ·  How-to guides overview  ·  Next: Placing footnotes at the end of a section or chapter

Footnotes in ConTeXt  ·  Overview  ·  Tutorial  ·  How-to guides  ·  Formatting footnotes  ·  Reference  ·  Explanation  ·  Glossary