Before splitting a PDF, decide whether you need every page as a file, several page ranges, or smaller parts for an upload limit.
Three Common Split Modes
| Mode | Example | Best for |
|---|---|---|
| Every page | Export pages 1, 2, 3 separately | Submitting scanned pages one by one |
| Page ranges | 1-3, 4-8, 9-12 | Splitting by chapters or attachments |
| By size target | Keep each part below a limit | 5MB or 10MB upload limits |
Exact automatic size-based splitting is hard because scanned pages, photos, and text pages vary widely. A practical workflow is to split by ranges, then check each output file size.
Why Is Size-Based Splitting Not Exact?
PDF page size can vary dramatically. A text-only page may be only a few dozen KB, while a scanned image page can be several MB. Even with the same page count, output files can have very different sizes.
| Page type | Size behavior | Splitting tip |
|---|---|---|
| Text-only PDF | Usually small and stable | Split by chapter ranges |
| Scanned PDF | One page can be large | Test with a small page range first |
| Image-heavy report | Chart pages are larger | Separate image-heavy sections |
| Mixed document | Each page can differ greatly | Check each output file size after splitting |
How to Write Page Ranges
A common syntax is 1-3,5,8-10, which means pages 1 through 3, page 5, and pages 8 through 10. Check whether PDF page numbers match the reader display before exporting.
- 1-3 means a continuous range and includes both page 1 and page 3.
- 1,3,5 selects only those pages.
- 1-3,8-10 combines multiple ranges in the output.
- If the viewer shows Roman numerals for front matter, displayed page labels may not match actual PDF pages.
How Should You Name Split Files?
If split files will be uploaded or sent to someone else, use names that preserve meaning and order. contract-part-01.pdf and contract-part-02.pdf are much safer than split-1.pdf.
When Should You Extract Pages Instead?
If you only need pages 2, 5, and 9 in one new document, extraction is a better fit. If you need one large PDF broken into multiple independent files, splitting is the right workflow.