Removing pages from a PDF sounds like one of the simplest possible tasks. It usually is — but a handful of edge cases (form fields that span the deletion, signed documents, page-numbered sections) turn an easy job into a frustrating afternoon if you don't know what to look for.
Before you delete
Two questions to answer first:
- Can you re-export from the source? If yes, that's almost always cleaner than deleting pages from the PDF directly. Open the source document, delete the pages there, export.
- Is the PDF signed? Deleting pages from a signed PDF invalidates the signature. Sometimes that's fine; sometimes you need to re-sign; sometimes the signature is itself proof the PDF wasn't tampered with, and you can't change it without legal consequences. Check before editing.
If neither of those applies, normal page deletion is straightforward.
Method 1: Browser-based deletion
The cleanest way to delete pages from a PDF is a browser tool with a thumbnail view. Docento.app shows every page as a thumbnail; you click to select, drag to multi-select, hit delete, and save — all in the browser, with the file staying on your device.
Workflow:
- Open the PDF.
- Switch to thumbnail view if it's not the default.
Ctrl/Cmd-clickto select multiple pages,Shift-clickfor ranges.- Delete.
- Reorder remaining pages if needed.
- Save and download.
Method 2: macOS Preview
Mac users have it built in. Open the PDF in Preview, show the sidebar (View → Thumbnails), select pages with Cmd-click, hit Delete, save. Five seconds.
Method 3: Print-to-PDF with page range
A surprisingly underused trick: open the PDF, hit Print, set the print range to "exclude" the pages you don't want — for example, "1-3, 5-8" if you want to delete page 4. Print to PDF. The output skips the excluded pages.
Caveats:
- Bookmarks and form fields may not survive.
- Files can grow because of re-rasterisation.
- Use only when other methods aren't available.
Method 4: Command line
For scripted deletion or huge files, the command line is fastest:
- qpdf:
qpdf input.pdf --pages . 1-3,5-8 -- output.pdf— keeps pages 1-3 and 5-8, drops page 4. - pdftk:
pdftk input.pdf cat 1-3 5-end output output.pdf— same idea, older syntax. - mutool:
mutool clean -g input.pdf output.pdf 1-3,5-— slightly different syntax, more options.
Pair with our batch processing guide if you delete pages from many files weekly.
What gets cleaned up automatically
When you delete a page, modern tools also clean up:
- Bookmarks pointing at deleted pages — usually they're removed or redirected.
- Outline entries — same as bookmarks.
- Page-level annotations that lived on the deleted page — gone with the page.
- Document-wide page count in TOC entries — sometimes updated, sometimes not. Always check.
What does not get cleaned up
A few things are easy to forget:
- Internal links that pointed at the deleted page — they now go to whatever page took its place, or break entirely.
- Cross-references in the document text ("see page 47") — these are static text and need manual editing.
- Page numbers if printed on each page — they don't renumber automatically. See adding page numbers to a PDF to redo them.
- Tables of contents with page numbers — needs manual update or regeneration from the source document.
- Headers and footers that say "Page X of Y" — Y is wrong now.
For documents going to readers who care about polish (court filings, formal reports), do a final pass on these.
Form fields that span deleted pages
If a form has a field whose definition lives on page 1 but is rendered on page 5, deleting page 1 may leave page 5's field broken. Test the form after deletion. If anything is off, the cleanest fix is to recreate the form from a clean copy. See creating a fillable PDF form.
Deleting parts of a page (vs the whole page)
If you only want to remove a section of a page rather than the entire page, you don't want page deletion — you want either cropping or redaction, depending on whether you want to hide content or just trim margins.
Versioning and undoing
Always work on a copy. Page deletion is destructive — once saved, the deleted pages are gone. Habits that save tears:
- Keep the original named
original-2026-03-26.pdfand edit a copy. - Use a versioning convention:
report-v1.pdf,report-v2.pdf. See document versioning best practices. - If the document is critical, store the original in a backup before editing.
Verifying after deletion
Before sending the modified file:
- Page count is what you expect.
- No dangling bookmarks pointing nowhere.
- All internal links still work —
Ctrl-clicka few to verify. - Page numbers are re-applied if needed.
- File size dropped by roughly the proportion of pages deleted. If it didn't, the file may still contain the deleted content — open with
qpdf --qdfto confirm cleanup.
Conclusion
Page deletion is fast and safe in any modern PDF tool, with a few gotchas around bookmarks, links, and form fields. Docento.app handles deletion in the browser without uploads. After deleting, run through the verification list above before sending — five minutes of checking saves an embarrassing "oh wait" email later.