Deleting a page from a PDF is one of the most routine edits there is. The mechanics are trivial. The decisions around it, what happens to bookmarks pointing at the deleted page, page numbering, signatures, table of contents references, are where mistakes happen. This guide covers the practical workflow plus the cleanup that should follow.
When you need to delete pages
A few common scenarios:
- Removing a blank page that sneaked in during scanning or export
- Trimming a duplicate cover page after merging documents
- Dropping appendix sections that are not relevant for a specific audience
- Deleting a draft or proof page before sending the final version
- Stripping personal information that ended up on its own page
For the last case, also see how to redact text in a PDF, sometimes the right answer is redaction within the page rather than deleting the whole page.
Tools that delete PDF pages
GUI tools:
- Adobe Acrobat Pro. Tools → Organize Pages → select page → Delete (trash icon) → save.
- Foxit PDF Editor. Page → Delete Pages → enter page range.
- PDF-XChange Editor. Document → Delete Pages.
- Preview on macOS. View → Thumbnails → click page → Delete key → File → Save.
- Browser-based. Docento.app supports page deletion in the browser without installing anything.
CLI tools:
qpdf,qpdf --empty --pages input.pdf 1-3,5-end -- output.pdfkeeps everything except page 4. See qpdf introduction.pdftk,pdftk input.pdf cat 1-3 5-end output deleted.pdf. See pdftk introduction.cpdf,cpdf -split-on-bookmarks input.pdf -o out.pdforcpdf input.pdf 1-3,5-end -o output.pdf.
For one-off deletions, GUI is fastest. For batch jobs across many files, CLI wins.
Page-range syntax quick reference
Most tools accept page-range syntax for specifying what to keep:
1-5, pages 1 through 51,3,5, pages 1, 3, and 5 only1-3,5-end, pages 1 through 3, then 5 onward (deletes page 4)end, alias for the last pageeven/odd, even or odd pages (useful for cleaning up two-sided scans)r1-r3, last three pages, counting from the end
A delete operation is usually expressed as "keep these ranges" with the deleted pages excluded.
What gets affected when you delete a page
Several things in the PDF refer to specific page numbers:
- Bookmarks (outlines). Bookmarks pointing to deleted pages typically retarget to the next surviving page or break. Verify after deletion.
- Internal hyperlinks. "See page 12" links that referenced now-deleted content may point to wrong pages or nowhere.
- Table of contents. The visible TOC text on the cover page references page numbers that have now shifted.
- Cross-references in the text. "As discussed in section 3" is fine if the section still exists; it is misleading if you deleted that section.
- Form fields. If a form field lives on a deleted page, the entire field disappears with it.
- Annotations. Comments and highlights on deleted pages are removed.
- Digital signatures. Deleting a page invalidates any digital signature on the document. See digital signatures vs electronic signatures.
- Page numbers in headers/footers. "Page 7 of 24" is now wrong if you deleted a page. Re-apply if needed. See how to add header and footer to PDF.
The deletion itself takes a second. The cleanup is the real work.
Cleaning up after deletion
A practical checklist:
- Re-apply page numbering if the document has visible page numbers
- Update the table of contents, either regenerate it from bookmarks or edit by hand
- Verify all bookmarks resolve to the right pages
- Test internal hyperlinks by clicking each one
- Re-check the file in a different viewer to confirm nothing broke
- Re-sign if needed (signatures are invalidated by the deletion)
For long documents, this cleanup can take longer than the deletion. Plan accordingly.
Specific cases
Delete a blank page after scanning. Blank pages are common after duplex scanning when the source had an odd number of pages. Many scanning tools (OCRmyPDF, ABBYY) have an option to auto-remove blank pages. Or delete manually via Organize Pages.
Delete every other page. Common after duplex-scanning a single-sided document, every other page is blank. Use qpdf --empty --pages input.pdf odd -- output.pdf to keep just the odd-numbered pages.
Delete a range from many files. A batch job:
for f in *.pdf; do
qpdf --empty --pages "$f" 1-3,5-end -- "out/$f"
done
Removes page 4 from every PDF in the folder.
Delete pages with specific content. "Delete every page that contains the word DRAFT" requires identifying the pages first. Extract text per page, scan for the keyword, then delete by page number. Most realistic in a small Python script using pdfplumber or pdfminer.six.
Splitting before deletion
Sometimes "delete pages" actually means "split the file and keep one piece". For that workflow, see how to split a PDF and how to extract pages from a PDF.
Common gotchas
Bookmarks point to wrong pages. PDF bookmarks store internal references that mostly survive page shuffling. Sometimes a deletion shifts a bookmark to an adjacent surviving page rather than removing it. Verify visually.
TOC numbers are now wrong. The TOC is just visible text, deletion does not update it. Either regenerate from bookmarks or hand-edit. See how to add a table of contents to PDF.
Form field on a "shared" page. Some forms have a field labeled "Page 1 of 5" generated at PDF creation time. Deleting a page does not regenerate this. Re-issue from the form template if you have one.
Annotation snapshots. Comments on a page that referenced "page 7" in their text body still say "page 7" after page 7 is gone. Annotation contents are not auto-updated.
Digital signature invalidation. A signed PDF cannot be modified, the signature locks the file's bytes. Deleting a page breaks the signature. Either delete before signing, or accept the unsigned status and re-sign afterward.
Page labels diverge. PDFs can have "page labels" separate from physical page index (e.g., front matter labeled i, ii, iii while the file's pages 1, 2, 3 are physically the same). Deleting based on physical pages can produce mismatched labels.
Hidden form data. Some PDFs carry data that lives on a specific page (e.g., XFA layouts). Deleting the page may strip data you needed. Test thoroughly for form-heavy files.
Verifying the result
After deletion:
- Page count, does the new PDF have the expected number of pages?
- First and last page, are they the correct ones?
- Bookmarks, do they point to the right pages?
- Page numbers in headers/footers, are they updated, or do they still show the original numbering?
- Internal links, click a few and confirm they go where expected
- Open in a different viewer, sometimes one viewer caches the old version
Quick recipe
For a typical deletion job:
- Open the PDF in your editor or Docento.app
- Identify the page numbers to delete
- Use the delete or Organize Pages tool
- Save as a new file (do not overwrite the original, keep a backup)
- Update header/footer page numbers if present
- Verify bookmarks
- Done
For batch:
qpdf --empty --pages input.pdf 1-3,5-end -- output.pdf
One line. Repeatable.
Takeaway
Deleting PDF pages is one of the simpler edits and one of the most affected by side effects. The deletion itself is a single command; the cleanup, page numbers, bookmarks, TOC, links, signatures, is where care matters. For one-off jobs use a GUI; for batch use qpdf or pdftk. Always verify in a different viewer after deletion. For browser-based workflows that combine deletion with merging, re-ordering, and page-number updates, Docento.app handles the whole pipeline in one place.