pdfblah.com

← All guides

Combine PDFs into a binder

Board packets, hearing bundles, committee agendas: the deliverable is one PDF, organized by numbered tabs, with a table of contents people can actually click. Building that by hand (a ToC in Word, then appending PDFs one by one) takes an afternoon. Here it is in one step.

A generated Contents page with numbered badges, dot leaders, and page numbers, next to a numbered edge tab on a section page

The generated Contents page and a section's edge tab. Every row is a real link; every document gets a bookmark; tabs stagger down the page edge like a physical tab set.

What you get

Do it online

  1. Open pdfblah.com and drop in your PDFs, in binder order.
  2. In the Output panel, turn on Merge into one PDF, then Table of contents. Add Numbered tabs if you want the edge tabs.
  3. Download binder. One PDF, ready to send or print. The Contents can be set in Helvetica or Times.

Make it a right-click on your Mac

One command installs a Finder Quick Action called Merge into Binder:

curl -fsSL https://pdfblah.com/binder-mac.sh | sh

Select the PDFs in Finder, right-click, Quick Actions → Merge into Binder. They combine in name order (prefix files 01-, 02- to set it), and the finished binder opens from ~/Downloads. If you also want the Clean Scan action, the two install side by side.

From the command line

pip install pdfblah

# a binder: clickable Contents page, bookmarks, numbered edge tabs
pdfblah combine *.pdf -o binder.pdf --toc --tabs

# name the sections yourself, and set the Contents in Times
pdfblah combine a.pdf b.pdf c.pdf -o binder.pdf --toc \
  --titles "Agenda,Minutes,Budget" --toc-font serif

The tool is open source (MIT) and runs fully on your machine, so nothing is uploaded. See the pdfblah project on GitHub.

Tips