PDF Bookmarks Guide: Outlines & Navigation

A 200-page PDF without bookmarks is unreadable on any device. The outline panel is the difference between "I'll skim later" and "I'll actually use this." Bookmarks take minutes to add and make documents feel instantly professional.

Outline Structure

Outline ElementHoldsNotes
TitleDisplay labelPlain text, supports any Unicode
DestinationPage + viewExplicit or named destination
Parent / Child linksTree positionEnables nesting up to many levels
Next / PrevSiblingsDefines display order
Color & styleOptional visual cuesBold/italic for top-level chapters
ActionOptional richer behaviourJavaScript, URI — use sparingly

Manual vs Programmatic Bookmarks

For short documents, adding bookmarks manually in a PDF editor is fastest. Open the outline panel, select a target page, and add a top-level or nested entry. For long, frequently regenerated documents (reports, books, exports from a CMS), generate the outline programmatically. Tools like pdf-lib (JS), PyMuPDF (Python), and iText (Java) can walk the structure tree, find heading tags, and write outline entries in one pass.

Good Bookmark Hygiene

  1. Mirror the visible heading hierarchy — H1 = top level, H2 = child, etc.
  2. Keep labels under ~60 characters; long titles wrap and look messy.
  3. Use named destinations for chapter starts; raw page numbers break when pages are added or removed.
  4. Set the document's PageMode to UseOutlines so the panel opens automatically.
  5. Test on mobile readers — some flatten nesting beyond two levels.

Common Problems

  • All bookmarks point to page 1: happens when destinations were never set during export. Re-export with bookmarks enabled.
  • Outline panel hidden by default: set PageMode = UseOutlines in the catalog.
  • Wrong zoom on click: use the Fit or FitH (fit width) destination type, not XYZ which preserves the author's zoom level.
  • Broken after merge: use a merge tool that preserves outlines and re-targets pages.

Combine Sectioned PDFs

Merge chapter PDFs into a single book — bookmarks and order preserved.

Merge PDF →

Frequently Asked Questions

TOC is visible page content. Bookmarks are a side-panel navigation tree.
Via explicit destinations (page+view) or named destinations (more resilient).
Yes — Word, LaTeX, InDesign, and libraries like pdf-lib, PyMuPDF, iText.
If the merge tool preserves outlines and re-targets pages. Always verify.
Set PageMode to UseOutlines so the outline panel opens automatically.