PDF Merge & Split PDF Merge & Split
Add to Chrome — Free

PDF Merge & Split Blog

How to Merge PDFs and Keep the Table of Contents

Updated March 2026 · 5 min read

Quick Answer Basic merge tools drop bookmarks. To preserve PDF navigation when merging: use Adobe Acrobat Pro (which keeps bookmarks from all source files) or pdftk (you can add bookmarks via a metadata file). For a simple navigable merged PDF, create a visible table of contents page and merge it first, then add bookmarks with pdftk.
📋 Table of Contents
📋 Table of Contents

When you merge several PDFs that each have their own bookmark structure, most basic tools produce a flat merged document with no navigation. The bookmarks from the individual source files disappear, leaving readers with no way to jump to sections in a long merged document.

This guide covers every approach to creating a merged PDF that retains or adds a useful table of contents — from a simple visible page to full clickable PDF bookmarks.

Merge PDFs — Then Add Navigation

Start with PDF Merge & Split for the base merge, then add a ToC page.

Add to Chrome — Free


Two Types of "Table of Contents"

It is worth distinguishing what you might want:

Professional documents often include both. For most practical purposes, a visible ToC page is sufficient and easy to create. Clickable bookmarks require more advanced tools.



Method 1: Create a Visible ToC Page (Works with Any Merge Tool)

This approach adds a visible, printed table of contents at the start of the merged document. It is not clickable, but it is readable on any device.

Step-by-step

  1. Decide the merge order and note how many pages each source document has.
  2. Calculate where each section starts in the merged document. Example:
    • ToC page: page 1 (this page)
    • Section 1 (Introduction, 5 pages): starts page 2
    • Section 2 (Methods, 12 pages): starts page 7
    • Section 3 (Results, 8 pages): starts page 19
  3. Create a ToC document in Google Docs or Word listing these sections and page numbers.
  4. Export the ToC document as PDF.
  5. Use PDF Merge & Split to merge: ToC PDF first, then all content PDFs in order.
Page number offset: If your ToC page adds one page at the front, every section's start page shifts by 1. Account for the ToC page itself when calculating section page numbers.


Method 2: Preserve Bookmarks with Adobe Acrobat Pro

Adobe Acrobat Pro is the only tool that automatically preserves bookmarks from all source PDFs when merging:

  1. Open Adobe Acrobat Pro.
  2. Go to Tools → Combine Files.
  3. Add all your PDFs.
  4. Acrobat creates the merged file with each source document's bookmarks preserved as a subsection of the merged document's outline.

The result: the merged PDF's navigation panel shows a tree with one entry per source file, each expandable to show that file's bookmarks. This is the best outcome for professional documents.



Method 3: Add Bookmarks with pdftk

pdftk can add bookmarks to an existing PDF via a metadata file. This is useful if you have already merged with a basic tool and want to add navigation afterward.

1. Create a bookmarks metadata file

BookmarkBegin
BookmarkTitle: Introduction
BookmarkLevel: 1
BookmarkPageNumber: 2
BookmarkBegin
BookmarkTitle: Methods
BookmarkLevel: 1
BookmarkPageNumber: 7
BookmarkBegin
BookmarkTitle: Results
BookmarkLevel: 1
BookmarkPageNumber: 19
BookmarkBegin
BookmarkTitle: Conclusion
BookmarkLevel: 1
BookmarkPageNumber: 27

2. Apply to the merged PDF

pdftk merged.pdf update_info bookmarks.txt output merged-with-bookmarks.pdf

The output PDF has a clickable navigation outline matching your bookmarks file. BookmarkLevel 1 creates top-level entries; level 2 creates nested sub-entries.

Tip: First dump the metadata of your merged file to see what already exists: pdftk merged.pdf dump_data output info.txt. Edit the info.txt file to add or modify bookmarks, then apply it back with update_info.


Method 4: Python with PyPDF2 (Scriptable)

For recurring merge tasks where you always want a structured ToC, a Python script can merge files and add bookmarks programmatically:

from PyPDF2 import PdfMerger

merger = PdfMerger()

# Add files with bookmark titles at each merge point
merger.append("introduction.pdf", bookmark="Introduction")
merger.append("methods.pdf", bookmark="Methods")
merger.append("results.pdf", bookmark="Results")
merger.append("conclusion.pdf", bookmark="Conclusion")

merger.write("merged-with-toc.pdf")
merger.close()

PyPDF2's PdfMerger automatically adds bookmarks at the page where each new file begins. This is the cleanest solution for scripted workflows.

Start With the Base Merge

Use PDF Merge & Split for the initial combination, then add bookmarks with pdftk.

Install PDF Merge & Split


Related Guides



Frequently Asked Questions

Do bookmarks survive when merging PDFs?

It depends on the tool. Basic tools drop bookmarks. Adobe Acrobat Pro preserves bookmarks from all source documents. Pdftk with a metadata file can add bookmarks to any merged PDF.

How do I add a table of contents page to a merged PDF?

Create a ToC page in Word or Google Docs, list each section and its page number in the merged file, export as PDF, then merge the ToC PDF as the first document.

Can I add clickable navigation to a merged PDF without Adobe Acrobat?

Yes, using pdftk. Create a text file listing BookmarkTitle and BookmarkPageNumber for each section, then apply: pdftk merged.pdf update_info bookmarks.txt output merged-with-nav.pdf

What is the difference between a PDF table of contents page and PDF bookmarks?

A ToC page is a visible document page listing sections and numbers — like a printed book. PDF bookmarks are a navigation panel in the PDF viewer sidebar with clickable links. Professional PDFs often include both.

Does merging PDFs in Adobe Acrobat preserve bookmarks from all source files?

Yes. Adobe Acrobat Pro's Combine Files tool preserves bookmarks from all source PDFs and places them as sections within the merged document's outline.

More Free Chrome Tools by Peak Productivity

Bulk Image Downloader
Bulk Image Downloader
Download all images from any page
Pomodoro Technique Timer
Pomodoro Technique Timer
25-minute focus timer with breaks
YouTube Looper Pro
YouTube Looper Pro
Loop any section of a YouTube video
Citation Generator
Citation Generator
Generate APA/MLA/Chicago citations
WebP to JPG/PNG
WebP to JPG/PNG
Convert WebP images to JPG/PNG
Auto Refresh Ultra
Auto Refresh Ultra
Auto-refresh pages at custom intervals