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.
Why Split a PDF?
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.
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
- Open the PDF in Acrobat Pro.
- Go to Tools > Organize Pages to open the Organize Pages panel.
- 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.
- Right-click the selection and choose Extract Pages, or click the Extract button in the toolbar at the top of the panel.
- 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.
- 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
- Open the PDF and go to Tools > Organize Pages.
- 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.
- Open the document in Acrobat and go to File > Print.
- In the Printer dropdown, select Adobe PDF (or Microsoft Print to PDF as a free alternative).
- Under the Pages section, enter the specific page range you want — for example, 5-12 for pages 5 through 12.
- 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.
Explore the Full Range of Mapsoft PDF Tools
Mapsoft's Acrobat plugins help with bookmarks, stamps, redaction, and more — ideal for complex PDF workflows. View our products or contact us to discuss your needs.