In-Depth Guide

How to Split a PDF Into Separate Pages or Sections

👤
Adam K.
📅 2026-01-15 ⏱ 9 min read
✂️
Table of Contents
  1. When and Why to Split a PDF
  2. Method 1: Browser Split Tool — Free, Private
  3. Method 2: Extract Specific Pages
  4. Method 3: Adobe Acrobat
  5. Method 4: macOS Preview
  6. Method 5: Command Line with Ghostscript
  7. Handling Large PDFs
  8. Split Method Comparison

Splitting a PDF is the mirror operation of merging — instead of combining documents, you're separating them. The right splitting method depends on what you're trying to achieve: extracting every page individually, dividing a document at a specific page, or pulling out a non-contiguous selection of pages. This guide covers all scenarios with a method for every platform.

When and Why to Split a PDF

Common use cases where splitting is the right solution:

Method 1: Browser Split Tool — Free, Private

Folium's Split PDF tool offers two modes: extract every page as its own PDF (bundled in a ZIP), or split the document at a specific page number into two parts. Both modes run entirely in your browser with no file upload.

Extract All Pages Individually

  1. Open foliumio.netlify.app/split-pdf.html and upload your PDF.
  2. Select Extract all pages individually from the Split Mode dropdown.
  3. Click Split PDF. Each page becomes a separate PDF file, named page_1.pdf, page_2.pdf, etc., all packaged into a single ZIP download.

Split at a Specific Page

  1. Upload your PDF and select Split at specific page.
  2. Enter the page number where the split should occur. Entering 10 creates Part 1 (pages 1–10) and Part 2 (pages 11 to end).
  3. Click Split PDF. Two PDFs download in a ZIP file.
💡 Need Non-Contiguous Pages?

If you need pages that aren't in a neat range (e.g. pages 3, 7, 15, and 22), use Extract Pages instead. It accepts comma-separated page numbers and ranges like 3,7,15,22.

Method 2: Extract Specific Pages

Folium's Extract Pages tool is more flexible than the basic split — it lets you specify any combination of individual pages and ranges, and the output contains only those pages in the order you specified.

Input examples:

This is the tool to use when creating a "summary" document from a long report — pull the executive summary, key charts, and conclusion pages into a standalone document without anything else.

Method 3: Adobe Acrobat

Acrobat Pro offers the most visual split experience. You see page thumbnails for the entire document and can set split points by clicking rather than typing page numbers — helpful for long documents where you're navigating by visual content rather than knowing exact page numbers.

  1. Open the PDF in Acrobat Pro.
  2. Go to Tools → Organise Pages. This opens the page thumbnail view.
  3. Click Split in the toolbar above the thumbnails.
  4. Choose split criteria: Number of pages (split every N pages), File size (create parts under a certain MB), or Top-level bookmarks (split at each chapter marker).
  5. Click Output Options to set the folder and filename template, then Split to process.

The "Top-level bookmarks" split mode is particularly powerful for technical documentation or ebooks — it automatically splits at every chapter without needing to know page numbers.

Method 4: macOS Preview

Preview can extract individual pages to new files using drag-and-drop from the thumbnail sidebar.

  1. Open your PDF in Preview with the sidebar showing (View → Thumbnails).
  2. Select the page thumbnail(s) you want to extract. Hold Shift to select a range, or Command to select non-contiguous pages.
  3. Drag the selected thumbnail(s) from the Preview window to your Desktop or a Finder folder.
  4. Preview creates a new PDF file containing only the dragged pages, named "Untitled" by default. Rename it appropriately.

Method 5: Command Line with Ghostscript

For batch splitting of many files, Ghostscript is the most powerful free option. It's available on Windows, macOS, and Linux.

Extract pages 5–10 from a PDF:

gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFirstPage=5 -dLastPage=10 -sOutputFile=output.pdf input.pdf

Split every page into its own file using a shell loop:

for i in $(seq 1 $(pdfinfo input.pdf | grep Pages | awk '{print $2}')); do gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFirstPage=$i -dLastPage=$i -sOutputFile=page_$i.pdf input.pdf; done

Ghostscript preserves text layers, vector graphics, and embedded fonts perfectly through the split operation.

Handling Large PDFs (100MB+)

Browser-based tools process files in your device's RAM. For files over 100MB:

Split Method Comparison

MethodBest ForCostPrivacyNon-contiguous Pages
Folium SplitAll pages or split at pageFreeLocalUse Extract Pages
Folium ExtractAny page selectionFreeLocalYes
Acrobat ProVisual split, bookmarks$23/moLocalYes
macOS PreviewSingle pages, Mac onlyFreeLocalYes
Ghostscript CLIBatch operationsFreeLocalScripting needed

Key Takeaways

Try Folium's Free PDF Tools

All 20 tools run in your browser — no upload, no account, no watermarks added to your files.

Browse All 20 PDF Tools →
← Back to Blog
🏠 Home 🔧 All Tools