Table of Contents
Formatting footnotes in ebooks can be surprisingly fiddly. I’ve seen “simple” footnotes turn into mystery meat—numbers that don’t jump anywhere, notes that show up in the wrong place, or links that work on one device and fail on another. Not great.
The good news? You don’t need a complicated setup to make footnotes readable and professional. The trick is getting the linking right (so readers can jump to the note and back), keeping the notes tight, and testing in the actual ebook apps you care about.
Below are the practical steps I use when I’m building EPUBs/Kindle-ready HTML, plus a couple of real-world failure points I’ve run into while testing.
Key Takeaways
- Use superscript numbers in the main text that link to the note via a matching fragment identifier (e.g.,
#note1), and keep the note in a predictable location. - Keep footnotes short—usually 1–2 sentences. If you need more, consider moving the extra detail to an endnotes section.
- Stay consistent with your style choice (APA/Chicago/etc.). Don’t mix “sequential superscripts” with “random page-footnote behavior” across chapters.
- For online sources, include URLs and/or DOIs directly in the footnote and make them clickable where the reader supports it.
- Test your ebook on multiple readers. In my experience, Kindle and EPUB readers don’t always interpret anchors the same way.
- Use descriptive anchor text for links (e.g., “DOI: 10.xxxx/xxxx” or “Read the source”), not “click here.”
- Before release, do a full pass: click every superscript, confirm the jump target is correct, then check that returning lands you where you expect.
- If you’re targeting EPUB 3, build the note markup so it’s valid XHTML and doesn’t rely on “browser-only” HTML quirks.

How to Format Footnotes in Ebooks for Better Reading and Citation
If you want footnotes in an ebook without turning the reading experience into a scavenger hunt, make them easy to jump to. The simplest approach is to use superscript numbers in the running text that link to a note block at the bottom (or in a dedicated endnotes section).
Here’s the basic pattern I rely on:
- In the text: link to
#note1 - In the notes area: create an element with
id="note1"
Example markup:
Text: <sup><a href="#note1">1</a></sup>
Notes section: <div id="note1">Your footnote text here.</div>
Now, a detail that matters more than people think: don’t assume every reader will handle “nice-looking HTML” the same way. In my testing, EPUB readers are usually fine with fragment links inside the same XHTML file, but Kindle can be pickier—especially when the fragment target is inside a different content document.
So what’s the workaround? Keep the reference and the note in the same XHTML file when possible. If you must split them across files, you’ll need to link with the correct file name, like:
<sup><a href="chapter3.xhtml#note1">1</a></sup>
Also, yes—keep footnotes short. Long footnotes don’t just look bad on a small screen; they can also push important content around and make the “back to where I was” feeling worse.
What I aim for: one or two sentences per footnote. If the citation is long (multi-author, full journal info, long URLs), I’ll either trim it or move the extended details into endnotes.
On style: APA and Chicago both want consistent numbering and placement, but the exact behavior in ebooks depends on how your publisher renders notes. If you’re following APA or Chicago, use their official guidance as your baseline rather than guessing. For example:
One more thing: the “back” experience. Most readers don’t truly support a perfect “return to the previous scroll position” for fragment jumps. What I do instead is add an explicit “back” link inside the note so readers can recover quickly, like:
<div id="note1">... <a href="#ref1">↩︎ back</a></div>
Then mark the reference spot with an anchor:
<span id="ref1"><sup>...</sup></span>
It’s not always pretty, but it’s reliable. And reliability is what readers actually notice.
If you want to expand beyond basic links, you can also see how interactive elements are handled in ebooks here: how to create interactive ebooks for free.
Quick checklist before you move on: Are your note IDs unique? Do the href fragment targets match exactly? Are you testing on at least one EPUB reader app and one Kindle setup?

Best Practices for Formatting Footnotes in Different Ebook Styles
Style guides matter, but the ebook part matters too. A footnote that looks “correct” in a Word document can still behave weirdly once it’s converted to EPUB/Kindle.
Here’s how I keep things sane when I’m following APA vs Chicago:
APA-style notes in ebooks (practical setup)
APA generally uses sequential numbering and expects footnote/endnote style consistency. In ebooks, what you’re really controlling is:
- Whether the superscript numbers are in the main text
- Whether the notes live at the bottom of the page equivalent (not truly “page” in reflowable EPUB) or in a dedicated endnotes section
- Whether your notes are formatted consistently (same font/spacing rules across the book)
For the “what APA expects” part, rely on APA’s footnote guidance: APA Style: Footnotes.
Chicago-style notes (what I watch for)
Chicago is often footnote-heavy, and in ebooks you’ll usually see notes implemented as:
- Bottom-of-section/endnotes style blocks
- Consecutive numbering across the work
- Short citations in notes, with full details where the style requires them
For the “how Chicago wants citations/notes structured” part, use the Chicago citation guide: Chicago Manual of Style citation guide.
One practical tip: build a single “notes template” XHTML file (or at least a shared notes block) and reuse it for every chapter. That way, your IDs, CSS, and behavior stay consistent.
Using Hyperlinks Effectively in Ebook Footnotes
Clickable footnotes sound straightforward—until you ship and realize one reader can’t resolve fragment IDs the way you expected. So here’s what actually works most often.
1) Keep IDs stable and unique
- Use
id="note1",id="note2", etc. - Don’t reuse IDs across chapters (it can cause jumps to the wrong note).
- Make sure your IDs are valid XML/XHTML names (avoid spaces, weird punctuation).
2) Link with fragments inside the same XHTML file when you can
In my experience, fragment links are most reliable when both the href target and the note element live in the same HTML/XHTML document.
3) Add a “back” link so navigation feels intentional
Even if the reader has a back button, the scroll position is inconsistent. A back link makes the experience feel designed.
Minimal working example (EPUB 3-friendly XHTML pattern):
<!-- In chapter.xhtml -->
<p>This claim needs support<sup><a href="#note1">1</a></sup>.</p>
<hr />
<div class="footnotes">
<p id="note1">1. See Smith (2022). <a href="#ref1">↩︎ back</a></p>
</div>
<!-- Optional anchor at reference spot -->
<span id="ref1"></span>
Note: the “ref1” anchor placement matters—you want it near the superscript so the jump back lands close to where the reader was.
4) Don’t rely on “browser shortcuts” in EPUB
Some HTML behaviors (like certain onclick scripts or non-standard attributes) won’t survive conversion. Stick to plain XHTML, valid IDs, and simple anchor tags.
Tips for Keeping Footnotes Short and Clear
Long footnotes aren’t just a style issue. They’re a UX issue. When a reader taps a superscript, they’re already expecting a quick check. If the note is a paragraph long, it feels like you’re dragging them out of the book.
Here’s what I recommend:
- Target 1–2 sentences per footnote whenever possible.
- If you need more, put the short citation in the note and move the extended explanation to endnotes.
- Trim “fluff” phrases like “as mentioned above…” since ebooks are reflowable and that kind of reference gets weird fast.
If you’re citing a source, a compact pattern I like is:
Smith, J. (2022). Title of article. Journal Name. <DOI/URL>
Then the reader can verify quickly without wading through extra commentary.
Common Formatting Mistakes to Avoid in Ebook Footnotes
These are the issues I see most often (and they’re genuinely frustrating as a reader):
- Broken links: the superscript jumps nowhere. Fix: double-check that
href="#note1"matchesid="note1"exactly. - Wrong note target: tapping 3 takes you to note 7. Fix: ensure IDs are unique across the whole ebook, not just within a chapter.
- Footnotes too far from context: readers tap, land in a distant section, and feel lost. Fix: place notes close to the relevant chapter content (or in a consistent endnotes block per chapter).
- Inconsistent numbering: the sequence resets or skips. Fix: generate footnote numbers from one source of truth (your manuscript) and reuse it during conversion.
- No testing on real devices: what works in a preview tool fails on a phone. Fix: test on at least one iOS/Android reader and one desktop reader.
If you want a quick “troubleshooting matrix,” here’s a simple one I keep handy:
- Symptom: superscript jumps to the top of the chapter
Likely cause: fragment ID doesn’t exist (or is duplicated)
Fix: verify the note element has the exactidyou referenced - Symptom: link works on EPUB but not Kindle
Likely cause: fragment targets across different XHTML files
Fix: move the note into the same XHTML file or link using the correct file name + fragment - Symptom: back link doesn’t return to the superscript
Likely cause: the “ref” anchor is too far away or not attached to the right spot
Fix: place theid="ref1"around/near the superscript markup
Incorporating URLs and DOI Numbers into Electronic Citations
For online sources, URLs and DOIs make footnotes genuinely useful. Readers can verify instantly, and you avoid that “I can’t find this reference” complaint.
Here’s the format rule I follow for digital citations:
- Put the DOI/URL at the end of the citation in the note.
- Make it clickable when possible.
- Don’t hide it behind “click here.”
Example:
https://doi.org/10.1234/example
One small limitation: some Kindle contexts handle external links fine, but internal fragment links are the part that often needs the most care. So I usually treat internal footnote navigation as the “must work” feature and external DOI links as “nice to have but still should work.”
How to Test Your Footnotes Across Different Ebook Devices
This is where I stopped guessing and started testing properly.
When I test footnotes, I don’t just click one superscript and call it done. I run a quick checklist:
- Open the ebook in a reader that supports EPUB well (for example, Apple Books on macOS/iOS or a common EPUB viewer)
- Open the same book in Kindle apps (Kindle for iOS/Android, or Kindle Previewer if you’re converting)
- Tap/click multiple superscripts (early, middle, and late in the book)
- Verify the jump goes to the correct note
- Verify the “back” link (if you added one) returns near the reference
What I noticed across readers: internal fragment behavior is the most sensitive. On some setups, clicking a superscript in the middle of a long chapter will jump correctly, but the scroll position after returning can land slightly off. That’s why the explicit back link helps.
Also, test on a phone. If your footnotes wrap weirdly at narrow widths, you’ll see it immediately. I’ve had notes that looked fine on desktop but became hard to tap on small screens because the clickable area was tiny.
If you’re rebuilding your workflow, make sure the testing includes the actual output file after conversion—not just your source HTML.
Integrating Digital Identifiers Like URLs and DOI Numbers
Digital identifiers aren’t just “extra.” They’re how modern readers find sources fast.
When I add a URL or DOI in a footnote, I use a simple, readable pattern:
- Include the full DOI or full URL
- Wrap it in an anchor tag so it’s tappable
- Keep it at the end of the note so readers know where the “verification info” starts
Example:
One more practical tip: if you’re using a DOI link, prefer the DOI resolver format (https://doi.org/...). It’s consistent and usually redirects correctly even if the publisher changes locations.
Providing Additional Resources for Ebook Formatting and Citation
If you want more hands-on help with ebook markup and interactivity, this is a useful companion read: how to create interactive ebooks for free.
And for citation expectations, use the style guide sources directly (APA and Chicago links above). Ebook formatting and citation rules overlap, but they’re not identical—so you’ll save time by separating “style rules” from “EPUB mechanics.”
Final Tips for Effective Footnotes in Your Ebook
Before you call it done, do one last sweep:
- Click every superscript at least once (yes, all of them—especially in the first few chapters).
- Confirm each note’s ID matches its reference.
- Make sure notes aren’t ridiculously long or repetitive.
- Check readability: font size/line breaks shouldn’t make notes hard to scan.
- Test on a phone and one desktop reader. If it’s only “good” on your computer, it’s not ready.
Footnotes should feel like a helpful shortcut, not a navigation problem. When your links are reliable and your notes are concise, readers actually enjoy using them.
FAQs
Use superscript numbers in the main text that link to a note element with a matching id (like #note1). Keep numbering consistent and place the notes in a predictable location (bottom of section or a dedicated endnotes area).
Keep each footnote short (often 1–2 sentences). Use consistent formatting for the notes section (font sizing and spacing), and don’t overload notes with extra commentary. If you need more detail, use endnotes.
Yes. Links (URLs/DOIs) are usually the most helpful. If you add images, test carefully—some readers scale and crop differently, and it can make footnotes harder to tap or read on smaller screens.
Avoid broken or mismatched links (wrong fragment IDs), duplicate IDs, inconsistent numbering, and notes that are too long or placed far from the relevant text. Most importantly: don’t skip device testing.



