How to Remove Pages from a PDF

The fastest ways to trim pages from a PDF, from one-off manual deletes to scripted batch removal.

← Back to Blog

How to Remove Pages from a PDF

Quick summary

Quick answer: To remove pages from a PDF, open it in Adobe Acrobat's Organize Pages view, select the pages you don't want, and press Delete. Free online tools like Mapsoft's PDF Hub do the same in the browser. For scripting, qpdf and pdftk handle batch page removal at the command line.

You can also remove pages from a PDF online for free using Mapsoft's PDF Hub — no installation required.

Common reasons to remove PDF pages

  • Stripping out sensitive content. Removing an appendix with confidential data before sharing a report.
  • Cleaning up scans. Deleting blank separators, cover sheets, or duplicated pages that came out of a batch scanner.
  • Extracting a subsection. Keeping just the relevant chapter from a large document.
  • Fixing errors. Removing an incorrect version of a page that needs to be replaced rather than re-exported.
  • Reducing file size and page count for distribution. A 300-page document trimmed to 40 relevant pages is easier to share and print.

Methods

Method 1 — Adobe Acrobat Organize Pages

In Acrobat Pro, choose Tools → Organize Pages (Edit → Organize Pages in recent versions). Page thumbnails appear in a grid. Click a page to select it, shift-click to select a range, ctrl-click to add individual pages, then press Delete or click the trash icon. Save As a fresh copy.

Keyboard shortcut: in Organize Pages view, you can type a page range in the Extract toolbar (e.g. "5-8, 12, 20-25") to operate on many pages at once.

Method 2 — Online, free

Mapsoft's Remove Pages tool opens the PDF in the browser, shows page thumbnails, and lets you click through to mark pages for deletion. Good for quick one-offs on machines without Acrobat.

Method 3 — Acrobat right-click (single pages)

Open the Page Thumbnails panel on the left of Acrobat, right-click any thumbnail, and choose Delete Pages. For one or two pages, this is faster than entering Organize Pages mode.

Method 4 — Command line (qpdf, pdftk)

For scripting, both tools handle page selection with page range syntax:

  • qpdf --pages input.pdf 1-4,6-20 -- output.pdf — keep pages 1-4 and 6-20, dropping page 5 and anything after page 20.
  • pdftk input.pdf cat 1-4 6-20 output cleaned.pdf — equivalent result.
  • qpdf --pages input.pdf 1-z --remove-pages=3,7 -- output.pdf — remove specific pages, keep all others.

Best practices

  • Save as a new file. Never overwrite the original when removing pages — you may want those pages back.
  • Check bookmarks and links after removal. Deleting a page that a bookmark points to leaves a broken link. Most tools auto-update bookmarks; some don't.
  • Rebuild the xref / optimize after removal. Deleting pages doesn't automatically shrink the file; the removed objects may still be in the file until it's re-saved with optimisation. In Acrobat, use Save As → Reduced Size PDF. On the command line, qpdf --linearize rebuilds the xref.
  • Beware of forms. Form fields on removed pages may leave orphan references elsewhere in the document. Test the form after removal.
  • Keep an audit trail for legal/regulated documents. If you're removing pages from a document that's under version control or a retention policy, record which pages were removed and why.

Frequently Asked Questions

How do I delete a single page from a PDF?

In Acrobat, open the Page Thumbnails panel, right-click the page, and choose Delete Pages. Online tools like Mapsoft's PDF Hub let you click a page thumbnail and delete it in the browser. At the command line, qpdf or pdftk can remove any page range.

Will removing pages reduce the file size?

Not automatically. The removed page's objects may remain in the file until you also run an optimisation or save-as pass. Use Acrobat's Save As Reduced Size PDF, or qpdf --linearize, to actually reclaim the space.

Does removing pages affect bookmarks?

Bookmarks that pointed to the removed pages become broken. Most modern tools update bookmarks automatically when pages are deleted; verify after removal, especially for long documents.

Can I undo page removal?

Only if you haven't saved. Save As a fresh file rather than overwriting the original so you have a recovery point if you remove the wrong page.

Related Articles

How to Split PDF Files in Acrobat

Removing pages and splitting a PDF are the two halves of the same operation. This post covers when each is the right tool.

How to Remove Blank Pages from a PDF

If the pages you want to remove are all blank, automated detection removes them in one pass.

How to Merge PDFs in Adobe Acrobat

The inverse operation: combine PDFs rather than trim them.

Try it yourself

Free online — no installation, no sign-up.