> ## Documentation Index
> Fetch the complete documentation index at: https://react-docx.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Footnote

A note at the bottom of the page, with its number where it is referenced.

```tsx theme={"dark"}
<Paragraph>
  Inspection done according to NR-12
  <Footnote>Brazilian regulatory standard for machinery safety.</Footnote>.
</Paragraph>
```

***

## Props

| Prop       | Type        | Description                                  |
| ---------- | ----------- | -------------------------------------------- |
| `children` | `ReactNode` | The note: text and formatting, or paragraphs |

***

## Numbering

Notes are numbered 1, 2, 3… in the order they appear. They are real Word footnotes: when someone adds or removes one in Word, the others renumber, and Word styles them with its *Footnote Text* and *Footnote Reference* styles.

A note can hold more than one paragraph:

```tsx theme={"dark"}
<Footnote>
  <Paragraph>Measured at the start of the shift.</Paragraph>
  <Paragraph className="italic">Source: operations log.</Paragraph>
</Footnote>
```

***

## Limitations

* Footnotes go in the body only, not in headers, footers or other notes
* No endnotes
