To split a PDF into two, choose a tool, set page ranges for each part, and export the two new files with clear names.
Got one long document that needs to become two clean files? This guide shows practical ways to split a PDF into two parts on Windows, macOS, Linux, and even the command line. You’ll see the fastest clicks in Adobe Acrobat, the built-in route on Mac with Preview, a simple “print range” trick on Windows, and a reliable open-source option that keeps files local. Every method keeps page order intact and avoids risky uploads where possible.
Methods At A Glance
Pick the approach that fits your device, budget, and comfort level. Here’s a quick comparison to get you started.
| Method | Best For | Core Steps |
|---|---|---|
| Adobe Acrobat (Pro) | Point-and-click control | Open PDF → Organize Pages → Split or Extract → Choose range → Export two files |
| Mac Preview | Built-in macOS tool | Open PDF → Show Thumbnails → Select pages for Part A → File > Export as PDF → Repeat for Part B |
| Windows “Print To PDF” | Quick, no installs | Open in Edge/Reader → Print → Pages (range for Part A) → Microsoft Print to PDF → Repeat for Part B |
| PDFsam Basic | Free, offline | Split module → Add file → Set “split after page N” → Run → Rename outputs |
| Poppler pdfseparate | Command line control | Extract ranges to two PDFs with one or two shell commands |
| Online Splitters | One-off jobs | Upload → Choose ranges → Download two files (avoid for sensitive docs) |
| Mobile Apps | On the go | Use a trusted PDF app → Split/Extract → Save to device or cloud |
Quick Prep Before You Split
- Check the page number where you want the cut. If Part A should end at page 12, Part B starts at 13.
- Decide file names up front:
Project-Report_Part-A.pdfandProject-Report_Part-B.pdfkeep things tidy. - Create a backup of the original PDF, especially when using batch or command-line tools.
How to Split a PDF into Two With Free Tools
Windows: Fast Split With “Print To PDF”
This route is handy when you can’t install extra software. You’ll create two exports by printing specific ranges to the built-in “Microsoft Print to PDF.”
- Open the PDF in Microsoft Edge or another viewer.
- Press Ctrl+P to open the print dialog.
- Under Pages, enter the range for Part A (e.g.,
1-12). - Choose Microsoft Print to PDF as the printer.
- Click Print, then save as …Part-A.pdf.
- Repeat steps 2–5 for Part B (e.g.,
13-24), save as …Part-B.pdf.
Need a guided reference on printing from Edge? See Microsoft’s help hub for printing basics in Edge (select print, choose range, and output). Link: Print In Microsoft Edge.
macOS: Split Inside Preview
Preview comes with every Mac and handles page extraction with simple drag-and-drop.
- Open the PDF in Preview.
- Choose View > Thumbnails to show the left sidebar.
- Click the first page of Part A, then Shift-click the last page of Part A to select the block.
- Choose File > Export as PDF. Save as …Part-A.pdf.
- Go back, select the remaining pages for Part B, then Export as PDF again.
Apple’s Preview guide confirms you can split and combine PDFs without extra apps. Link: Preview On Mac.
Adobe Acrobat (Pro): One-Click Split Or Extract
If you have Acrobat on desktop, splitting into two named files takes a minute.
- Open the PDF in Adobe Acrobat.
- Go to All Tools > Organize Pages.
- Choose Split to divide by pages or use Extract to pull a range into a new file.
- Set the break after your cut page (e.g., split after page 12) or extract the exact range for Part A.
- Export, then repeat for the second part if needed.
Adobe documents this step-by-step, including output options and naming patterns. Link: Split PDFs In Acrobat.
Linux, Power Users, And Servers: pdfseparate (Poppler)
If you prefer the terminal or you’re working on a server, pdfseparate from Poppler extracts page ranges without sending anything online.
# Split a 24-page file into two parts (1–12, 13–24)
pdfseparate -f 1 -l 12 input.pdf part-A-%d.pdf
pdfseparate -f 13 -l 24 input.pdf part-B-%d.pdf
# Optional: merge each range back into a single file with pdfunite
pdfunite part-A-*.pdf Project-Part-A.pdf
pdfunite part-B-*.pdf Project-Part-B.pdf
The pdfseparate man page explains flags for first (-f) and last (-l) page. Link: pdfseparate Man Page.
Splitting A PDF Into Two Files — Rules, Tools, And Tips
This section helps you pick the right method based on your document’s content, your security needs, and how often you’ll repeat the task.
When To Use Adobe Acrobat
Use Acrobat when you need preview thumbnails, quick reordering, and batch actions for large documents. The Organize Pages screen lets you split by page count, size, or bookmarks, so complex reports are easy to slice. Adobe’s help page lays out those choices and naming presets in detail.
When To Use Mac Preview
Preview is perfect for light edits on a Mac. It’s fast, safe, and already installed. You can drag a selected block of thumbnails out to the desktop to form a new PDF, or stick with File > Export as PDF for clean naming. Apple’s support guide confirms these core editing abilities.
When To Use Windows Print To PDF
Printing a page range to “Microsoft Print to PDF” is a smart fallback when you can’t install apps. You export Part A, then export Part B. It’s quick for small documents, and the Edge print dialog gives you page range control. Microsoft’s print article covers the basics.
When To Use PDFsam Basic
PDFsam Basic is a free, open-source desktop tool for Windows, macOS, and Linux. The Split module lets you “split after page N,” which is exactly what you need to create two parts in one pass. It keeps files local, which is a win for privacy. See the official docs for the Split module.
When To Use Poppler Tools
On servers or scripted workflows, pdfseparate offers speed and reliability. Pair it with pdfunite to rebuild a range into a single part file. The Debian man page spells out the flags you’ll use day-to-day.
When To Avoid Online Splitters
They’re fine for public brochures or manuals, but skip them for confidential contracts, IDs, or anything with personal data. Desktop and command-line routes keep everything on your machine.
Step-By-Step Playbooks
Playbook: Make Two Files In Acrobat
- Open the PDF in Acrobat.
- Go to Organize Pages.
- Click Split, choose Number of pages, and enter the cut point (e.g., 12 for Part A).
- Review the preview tiles. If needed, use Extract to isolate Part A first.
- Click Output Options to set destination and naming.
- Run the split. You’ll get two files you can rename cleanly.
Reference: Adobe’s official “Split PDFs” instructions.
Playbook: Make Two Files In Preview
- Open the PDF in Preview and turn on Thumbnails.
- Select the pages for Part A, then choose File > Export as PDF.
- Name it with a clear suffix, then export Part B in the same way.
Reference: Apple’s Preview overview page lists PDF editing abilities, including splitting.
Playbook: Make Two Files With PDFsam Basic
- Open PDFsam Basic and select Split.
- Add your PDF, pick Split after these pages, and enter the last page of Part A.
- Set an output folder and a filename pattern.
- Run. PDFsam creates both parts in one go.
Reference: PDFsam documentation for Split.
Playbook: Make Two Files With pdfseparate
- Install Poppler utilities for your OS.
- Run
pdfseparate -f 1 -l N input.pdf A-%d.pdfto pull Part A. - Run
pdfseparate -f N+1 -l LAST input.pdf B-%d.pdffor Part B. - Use
pdfuniteto combine each range into a single PDF if needed.
Reference: pdfseparate man page.
Naming, Sizes, And Page Order
Clean Names Help Everyone
Pick names that reveal scope and sequence. Good: Meeting-Minutes_2025-Q1_Part-A.pdf and …_Part-B.pdf. That tiny tweak saves inbox ping-pong later.
Keep Page Order Intact
When exporting via Print or Preview, double-check the Pages box. Avoid mixed ranges unless you want a custom set. Tools like Acrobat and PDFsam show thumbnails so you can verify order before saving.
Mind File Size
Scanned PDFs can balloon. Acrobat and many desktop tools include “Reduce File Size” or optimization after you split. On Linux, ghostscript can compress exports with a single command if needed.
Troubleshooting And Privacy Checklist
| Issue | Likely Cause | Fix |
|---|---|---|
| Can’t select a page range | Viewer limitation | Open in Edge/Acrobat; see Edge print help for range entry. |
| Huge output size | High-res scans or embedded fonts | Export with compression, or optimize after splitting |
| Pages out of order | Wrong selection | Use thumbnails to confirm before exporting |
| Confidential content | Online tool risk | Stay offline with Acrobat, Preview, PDFsam, or Poppler |
| No “Print to PDF” driver | Windows feature missing | Use a PDF app or reinstall the driver later; see Microsoft support hubs |
| Encrypted PDF won’t split | Password protection | Unlock with the document password first |
| Need two parts in one run | Manual repeat takes time | Use PDFsam’s “split after page N” to generate both parts. |
| Automation needed | Frequent tasks | Script with pdfseparate and pdfunite. |
Safety, Compliance, And Good Habits
Keep Sensitive Files Local
For HR records, contracts, and IDs, keep processing on your machine. Acrobat, Preview, PDFsam, and Poppler do the job without uploads. Adobe and Apple both document these features for local use.
Preserve The Original
Save a read-only copy of the source file. If you make a selection mistake, you can redo the split without data loss.
Use Consistent Metadata
If your workflow tracks versions, set the Title field for both parts, and keep the same Author and Subject. That helps search later.
Where This Fits In Your Workflow
Splitting a long PDF into two smaller files trims email size, speeds up reviews, and makes sharing cleaner. It also helps version control when teams only need the first section now and the second one later.
FAQs You Don’t Need
You asked for straight guidance, not a wall of Q&A. The steps above walk you from open to export with minimal clicks and clear ranges, so you can split once and move on.
Final Walkthrough: How to Split a PDF into Two Without Headaches
- Open the PDF in a tool you trust (Acrobat, Preview, PDFsam, or a viewer with Print to PDF).
- Decide the break point (the last page of Part A).
- Export Part A using a range ending at that page.
- Export Part B using a range that starts at the next page.
- Name both files clearly and verify page counts.
That’s all you need to split a PDF into two parts quickly and cleanly. If you’ll do this often, save presets in Acrobat or create a small shell script with Poppler tools.
Resource Links Used In This Guide
You now have multiple reliable paths for the same result, clear file-naming tips, and privacy-first options. Use the steps that match your device today, and keep a faster method handy for next time.
Tip: If someone asks, “how to split a PDF into two” on your team, send them this playbook so they follow the same naming and range rules.
Reminder: When documenting processes, note exactly “how to split a PDF into two” for that project, including the cut page and output names.
