A 200-page PDF is rarely useful as a single file. You need page 47 for one email, pages 1-10 for another, and the rest archived. Splitting a PDF the right way takes seconds — but knowing which split mode to use saves you a lot of repeat work.
Three ways to split, and when to use each
Splitting is not one operation. PDF tools usually offer at least three modes:
- By page range: extract pages 1-10, or 47, or 1-3 and 7-9. Best for one-off pulls.
- By count: split a 200-page file into chunks of 50. Best for sending limits — most email systems cap attachments around 25 MB.
- By bookmark: split at every chapter, section, or heading marker. Best for textbooks, reports, and any PDF with a real outline.
A fourth, "split every N pages," is just a special case of by-count. If you find yourself reaching for it often, your source documents probably have a structure (like one form per N pages) and you would be better off with bookmark-based splitting.
Method 1: Browser-based split
A browser tool gives you a thumbnail grid where you can pick page ranges visually. Docento.app splits in your browser without uploading the file, which matters when the PDF contains personal data, contracts, or anything you would not email casually.
Workflow:
- Open the file, see thumbnails of every page.
- Click-drag to select a range, or type ranges like
1-3, 7, 10-12. - Choose "split into separate files" (one PDF per range) or "extract as one file" (all selected pages in one new PDF).
- Download.
Method 2: Print-to-PDF for quick extraction
You don't need a dedicated splitter for one or two pages. Open the PDF in any reader, hit Print, choose "Microsoft Print to PDF" (Windows) or "Save as PDF" (Mac), and set the page range. The output is a fresh PDF containing just those pages.
Two caveats: print-to-PDF strips bookmarks and form fields, and it sometimes recompresses images. Fine for a quick share, not great for archival.
Method 3: macOS Preview
Preview's sidebar shows thumbnails. Select pages, drag them into a new Preview window, and save. It is the fastest split for Mac users on small files, with no third-party tool needed. For combining the split pieces back later, see how to merge PDFs on Mac.
Method 4: Command line for bulk jobs
For repeating workflows — splitting hundreds of monthly statements or a textbook into chapter files — the command line wins:
- qpdf:
qpdf input.pdf --pages . 1-10 -- output.pdf— very fast and lossless. - pdftk:
pdftk input.pdf cat 1-10 output out.pdf— older but rock solid. - Python (pypdf): scripted splits with custom logic.
See our batch processing guide for end-to-end examples.
Splitting scanned vs digital PDFs
If the PDF was scanned, the file is a stack of images. Splitting still works, but every output piece will also be a stack of images — not searchable text. Run OCR on the source first if you want each split file to be searchable. This is especially worth doing if you split monthly bank statements: a one-time OCR pass on the source means every split chunk inherits the text layer.
Don't lose what was attached to the pages
A common gotcha: splitting a PDF can drop:
- Bookmarks that point at pages outside the new range — most tools clean these up automatically, but some leave dangling entries that cause readers to misbehave.
- Form field values if a field "lives" on a page that was excluded.
- Page-level annotations like sticky notes — these usually survive, but always spot-check.
- Digital signatures — splitting invalidates them by design, since the signature was over the whole original file.
If signatures matter, re-sign the split file after extraction. See our guide on signing a PDF online.
Naming the output files
When splitting into many pieces, naming matters. Good patterns:
report-2026-{range}.pdffor ranges.statement-{customer}-{month}.pdffor repeating workflows.- Avoid
output (1).pdf, output (2).pdf— six months later nobody knows what was in them.
A short script that renames split files based on the first heading on each page is one of the highest-leverage automations you can build for any document-heavy workflow.
Conclusion
Pick the tool that matches the job: Preview or print-to-PDF for one-off pulls, a browser splitter for visual control without uploads, the command line when the same split happens every month. Docento.app handles all three split modes in your browser, with the source file never leaving your device. After splitting, our merge guide covers how to recombine pieces if you need to.