Organization

How to Split a PDF File Into Separate Documents

ยทUpdated ยท8 min read

A single PDF often contains more than one document bundled together. It might be a batch of scanned invoices, a report with chapters that need to go to different people, or a signed contract where only one page needs to be shared. Splitting pulls exactly the pages you need out of the larger file.

Two ways to split a PDF

There are really two different jobs hiding under "split a PDF," and it helps to know which one you actually need:

  • Split by page range pulls out one or more specific ranges, such as pages 1 to 3 for a cover section or pages 8 to 10 for an appendix.
  • Split into individual pages turns every single page of the document into its own standalone PDF, which is useful when each page is really a separate record, such as a scanned batch of receipts.

The distinction matters more than it sounds. Splitting by range is a surgical operation on a document you know the shape of. Splitting into individual pages is a bulk operation on a file that was never really one document to begin with. Picking the wrong one is how people end up with 200 single-page PDFs when they wanted three sections.

How page ranges work

CocoPDF's Split PDF tool accepts ranges in a simple format: "1-3, 5, 8-10". Each comma-separated entry becomes its own output file. A single number pulls out one page, and a range like "8-10" pulls out three consecutive pages as one file. Page numbers beyond the end of the document are simply skipped rather than causing an error.

Two details save a lot of confusion. Ranges are inclusive, so "8-10" gives you three pages rather than two. And page numbers here mean the position in the file, counting the cover as page 1, not whatever is printed on the page. A report whose body starts at printed page 1 after four pages of front matter will have its printed page 1 at file position 5. When the two disagree, the file position is what the tool uses.

Ranges can also overlap, which is occasionally useful. Entering "1-5, 4-8" gives you two files that both contain pages 4 and 5. That is handy when two recipients each need a section that shares a page, and it saves running the split twice.

One file or a ZIP?

The output format follows directly from how many ranges you enter. Enter a single range and you get back a single PDF. Enter more than one range, or split every page individually, and the results are bundled automatically into a ZIP file, so you still get one download regardless of how many output files were produced.

If you specifically want one PDF rather than a ZIP, enter exactly one range. People sometimes enter "1-3, 4-6" when they actually wanted pages 1 to 6 as a single document, and then wonder why a ZIP arrived. In that case "1-6" is the entry you want.

What splitting preserves

Splitting only changes which pages end up in which file. It does not touch the pages themselves. Each output file copies its pages exactly as they appeared in the source, so embedded fonts, images, vector graphics, annotations, and form fields all carry over unchanged.

A few document-level things behave differently, because they belonged to the whole file rather than to any one page. Bookmarks pointing at pages that are no longer in the output have nothing left to point to. Internal links between pages that ended up in different output files cannot resolve any more. And if the source was signed, splitting invalidates the signature, since the signature covered the original document and this is a new one.

File size is worth a brief warning too. Splitting a 20 MB document into four parts rarely gives you four 5 MB files. Fonts and other shared resources get copied into each output that needs them, so the parts commonly add up to more than the original. If the point of splitting was to get under an email limit, check the actual output sizes rather than assuming the division worked out, and compress the parts if they are still too large.

Common reasons to split a PDF

  • Pulling a single invoice out of a batch-scanned stack of many invoices.
  • Sharing only the signature page of a signed contract instead of the whole document.
  • Separating chapters of a report or ebook so each can be reviewed independently.
  • Breaking a large scanned document into smaller files that are easier to email.

Splitting versus extracting versus removing

Three tools overlap here, and picking the right one saves a step:

  • Split when you want the document broken into several pieces and you intend to keep more than one of them.
  • Extract Pages when you want one new file containing specific pages and you do not care about the rest.
  • Remove Pages when you want the original document back minus a few pages, which is the right choice for deleting a blank sheet or a confidential appendix.

The quickest way to decide is to ask what you want to be holding at the end. One file that is a subset means extract. One file that is the original with gaps means remove. Several files means split.

A note on splitting sensitive documents

Splitting is often used precisely because a document contains something that should not circulate, such as sharing the signature page of a contract without the commercial terms. That works, but only for content on other pages. Anything sensitive on a page you do include travels with it, including text hidden behind a redaction box that was drawn rather than properly applied. If a page needs to be shared minus a detail, that is a redaction job, not a splitting job.

Splitting is the mirror image of combining files. If you are instead trying to bring several PDFs together into one, see the guide to merging PDFs.

To split a file, upload your PDF to the Split PDF tool, enter the page ranges you need, and process. Whether that produces one PDF or a ZIP of several, the download starts automatically and your files are deleted from the server within an hour.

Try it yourself

Everything in this article is free to use on CocoPDF, with no account needed.

โœ‚๏ธ Split PDF