How to Split PDF Files in Acrobat

Extract individual pages, separate documents by chapter, or break large PDFs into smaller files — this guide covers every splitting method Acrobat offers.

← Back to Blog

How to Split PDF Files in Acrobat

Why Split a PDF?

Quick answer: To split a PDF in Adobe Acrobat, open the Organize Pages panel, select the pages you want to extract, click Extract, and save the resulting file. You can split by page range, bookmark, or file size.

There are many practical reasons to divide a PDF into smaller files. A compiled annual report may need to be split into chapters before distribution to different departments. A batch of scanned invoices might have been combined into a single large PDF that needs to be separated by invoice number before being imported into an accounting system. A legal bundle may need specific pages extracted for submission. A large technical manual may be too big to email and needs to be split into volumes.

Adobe Acrobat Pro provides several ways to split PDF documents, from manual page extraction through the Organize Pages panel to fully automated splitting by bookmark structure or file size. This guide covers all the main methods. For the reverse operation, see our guide on how to merge PDFs.

You can also split PDFs online for free using Mapsoft's PDF Hub — no installation required.

Method 1: Extract Pages from the Organize Pages Panel

Extracting pages is the most precise splitting method, giving you full control over which pages are pulled out and what happens to the original document.

Extracting a Single Page or a Range

  1. Open the PDF in Acrobat Pro.
  2. Go to Tools > Organize Pages to open the Organize Pages panel.
  3. In the thumbnail view, click the page you want to extract. To select a range, click the first page, then hold Shift and click the last page. To select non-consecutive pages, hold Ctrl and click each page.
  4. Right-click the selection and choose Extract Pages, or click the Extract button in the toolbar at the top of the panel.
  5. In the Extract Pages dialog, you can optionally check Delete Pages After Extracting to remove the extracted pages from the original document, and Extract Pages as Separate Files to save each page as its own PDF.
  6. Click Extract. The extracted pages open as a new untitled document. Save it using File > Save As.

Delete After Extracting

The Delete Pages After Extracting option is useful when you want to move pages out of one document and into another. With this option checked, the source document is left with the extracted pages removed — effectively splitting the document at that point.

Method 2: Split Document Tool

The Split Document tool automates the process of dividing a PDF into multiple output files based on a chosen criterion. This is the most efficient approach for splitting large documents into consistently sized pieces.

Accessing Split Document

  1. Open the PDF and go to Tools > Organize Pages.
  2. Click the Split button in the Organize Pages toolbar.

Split by Number of Pages

Select Number of pages and enter a value — for example, entering 10 will create a separate PDF for every 10 pages. A 50-page document would produce five output files.

Split by File Size

Select File size and specify a maximum size in megabytes. Acrobat will split the document at page boundaries to keep each output file under the specified size. This is useful when you need to keep files within an email attachment size limit or a storage quota.

Split by Top-Level Bookmarks

Select Top-level bookmarks to split the document at each top-level bookmark entry. Each section between bookmarks becomes a separate output file. The output files are named using the bookmark text where possible. This method is ideal for splitting a document that was structured with bookmarks representing chapters, sections, or individual records.

Output Options

Before splitting, click Output Options to configure where the output files are saved and how they are named. You can save to the same folder as the original, a specific target folder, or prompt each time. File naming can use the original filename with a numeric suffix, or incorporate the bookmark name when splitting by bookmarks.

Method 3: Print to PDF (Specific Pages)

A simple but effective method for extracting a range of pages is to print the document to a PDF printer.

  1. Open the document in Acrobat and go to File > Print.
  2. In the Printer dropdown, select Adobe PDF (or Microsoft Print to PDF as a free alternative).
  3. Under the Pages section, enter the specific page range you want — for example, 5-12 for pages 5 through 12.
  4. Click Print and choose a save location for the output PDF.

This method is the quickest for a one-off extraction when you do not need to split the original document and just want a clean copy of a specific page range. Note that printing to PDF discards interactive elements such as form fields, bookmarks, and annotations.

Splitting by Bookmarks

Splitting a PDF by its top-level bookmark structure is one of the most powerful and commonly used splitting techniques, particularly for documents that were assembled from multiple source files or that contain a clear chapter-based outline.

When you use the Top-level bookmarks option in the Split Document tool, Acrobat identifies the page number where each top-level bookmark points and uses those page positions as split points. The content between consecutive bookmark targets becomes one output file.

For best results, ensure your source document has a well-structured top-level bookmark hierarchy before splitting. If you need to add or reorganise bookmarks first, consider using Mapsoft Bookmarker to create a clean bookmark structure efficiently.

Automating Splits with Acrobat JavaScript

For repeated or complex splitting tasks, Acrobat JavaScript gives you programmatic control. The extractPages() method extracts a range of pages from a document into a new PDF.

// Extract pages 5 through 10 (0-based index) from the active document
// and save as a new file
var doc = this;

doc.extractPages({
  nStart: 4,      // Page 5 (0-based index)
  nEnd: 9,        // Page 10 (0-based index)
  cPath: "/c/output/extracted-pages.pdf"
});

To split a document into individual single-page files programmatically:

// Split the active document into individual page files
var doc = this;
var totalPages = doc.numPages;
var basePath = "/c/output/page-";

for (var i = 0; i < totalPages; i++) {
  doc.extractPages({
    nStart: i,
    nEnd: i,
    cPath: basePath + (i + 1) + ".pdf"
  });
}

As with other file-system operations in Acrobat JavaScript, extractPages() with a cPath parameter requires a trusted execution context.

Preserving Metadata and Bookmarks When Splitting

When Acrobat splits a PDF, the document metadata (title, author, subject, keywords) from the original document is generally carried into each output file. You may want to update the title metadata in each split file to reflect the content of that particular segment — this can be done via File > Properties > Description in each output file, or through a JavaScript batch step in the Action Wizard.

Bookmarks are preserved in split files where the bookmark target page falls within the extracted page range. Bookmarks that point to pages outside the extracted range are not included in the output file. If you are splitting by bookmarks using the Split Document tool, the relevant top-level bookmark and its children are retained in each output file automatically.

Cross-document links — hyperlinks that point to specific pages in the original document by page number — will break after splitting if the page numbers change. Review and update any internal cross-references after a split.

After splitting, adding navigation aids to the resulting files improves usability. Mapsoft's DogEars plugin adds visual page-edge tabs to PDF documents, giving readers a quick way to jump between sections — particularly useful for split files that have lost their original bookmark context. For rebuilding bookmarks in the split output, Bookmarker can generate a new bookmark structure from heading styles or text patterns.

Related Articles

How to Merge PDFs in Adobe Acrobat

Learn how to merge PDF files in Adobe Acrobat using the Combine Files tool, Insert Pages, and JavaScript. Covers bookmarks, form fields, and PDF/A compliance.

How to Compare PDF Documents in Adobe Acrobat

Learn how to use Adobe Acrobat Pro's Compare Documents feature to identify differences between two versions of a PDF, understand the comparison report, and work with results.

How to Add Watermarks to PDF Files

Learn how to add text and image watermarks to PDF files in Adobe Acrobat — covering appearance, page ranges, saving configurations, removal, and programmatic watermarking with JavaScript.

Add Navigation to Your Split PDFs

Mapsoft's DogEars and Bookmarker plugins help you add navigation tabs and structured bookmarks to split PDF files, keeping them easy to navigate.

Get Adobe Acrobat Pro →