Extracting only odd pages or only even pages from a PDF is a surprisingly common task. A double-sided scanner may have captured every sheet as two separate pages, but you only need the front sides for a report. A merged document may intermix content pages with blank placeholder pages that need to be stripped. Or a print job requires splitting a duplex document into two single-sided files for a printer that does not support automatic duplexing. Split PDF tools make this extraction straightforward once you understand the pattern-based page selection logic.
The underlying principle is the same across all extraction methods: define a page range using an odd or even filter, then export only the pages that match the filter. A 100-page PDF where you want all odd pages means exporting pages 1, 3, 5, through 99. Most PDF tools support this through a simple pattern notation. The difference between tools lies in whether they require you to type the page numbers manually or whether they accept a shorthand like 1-100:odd.
WukongPDF's PDF Pages tools include page extraction and splitting features that handle pattern-based selection directly in the browser. For batch operations on large document sets, the command-line and scripting approaches described below offer better automation.

Why Extract Odd or Even Pages?
In practice, the most common scenario is handling duplex-scanned documents. A scanner set to duplex mode captures the front of page 1 as page 1, the back as page 2, the front of page 2 as page 3, and so on. If you only need the front sides of every sheet, you extract odd pages. If you need only the back sides, you extract even pages. This workflow is standard in archival digitization projects, legal document processing, and accounting departments that scan both sides of receipts but only file the front sides.
Another common case involves documents with alternating content and blank pages. Some PDF generators insert a blank page after every content page to enforce that new chapters always start on a right-facing page in print layout. When the document moves to digital-only distribution, those blank pages add visual noise and increase file size without contributing any information. Extracting only the non-blank pages, which often follow an odd or even pattern, cleans up the document. Before extracting by parity, verify that the blank pages consistently follow an odd or even position throughout the entire document.
Print shops also use odd-even extraction to prepare documents for specific binding methods. Perfect binding requires separate stacks for front and back pages. A PDF Batch operation that splits a book PDF into its odd and even components prepares both stacks in seconds.
Try Split PDF
No installation needed. Works directly in your browser.
Method 1: Using Adobe Acrobat Pro's Organize Pages
Acrobat Pro provides the most visual approach to odd-even extraction. Open the PDF, go to Tools, then Organize Pages. The thumbnail view shows every page with its page number. Click the Select Pages dropdown and choose Page Range. Type the pattern for odd pages by entering individual page numbers manually, such as 1,3,5,7 for a small document. For longer documents, Acrobat does not natively support an odd/even shorthand, so you need to either type the full sequence or use a workaround.
The practical workaround for longer documents in Acrobat Pro is to use the Extract tool with a workaround approach. Open the Pages panel on the left, select the first odd page by clicking its thumbnail, then hold Ctrl and click each subsequent odd page. Once all target pages are selected, right-click and choose Extract Pages. In the dialog, check Extract Pages As Separate Files if you want individual page files, or leave it unchecked to get one combined PDF. Click OK. Acrobat produces a new PDF containing only the selected pages. This method is feasible for documents up to about 30 pages. Beyond that, manual clicking becomes error-prone, and a scripting approach is more practical.
Method 2: Online PDF Tools and Pattern-Based Selection
Several online PDF tools support pattern-based page extraction with an odd/even shorthand syntax. Look for a Split, Extract, or Page Selection feature in the tool's interface. When prompted for page numbers, enter a range with the odd or even modifier. Common syntaxes include 1-100:odd or 1-100:even or simply selecting Odd Pages from a dropdown menu. The tool processes the pattern server-side and returns a PDF containing only the matching pages.
Online tools handle documents up to several hundred pages comfortably. The processing time scales linearly with page count. A 200-page document might take 15 to 30 seconds. Most online tools also offer a complementary inverse operation. If you extract odd pages and want the even pages as well, run the even extraction on the same document or check a Split into odd and even option if the tool provides it. Download both output files immediately, as free tools typically delete processed files from their servers within hours.
Method 3: Command-Line Tools for Batch Processing
For users comfortable with the command line, pdftk and qpdf offer precise control over odd-even extraction without any manual clicking. pdftk supports the cat operation with page range patterns. The command pdftk input.pdf cat 1-100odd output odd_pages.pdf extracts all odd-numbered pages from the first 100 pages. Replace odd with even for even pages. The tool processes the document in under a second for typical office document sizes.
qpdf, a more modern alternative, provides similar functionality with the --pages flag. The command qpdf --empty --pages input.pdf 1-100:odd -- output.pdf selects odd pages. qpdf handles encrypted PDFs more gracefully than pdftk and preserves a wider range of PDF features including bookmarks, links, and form fields during extraction.
| Method | Best For | Limitation |
|---|---|---|
| Acrobat Pro Organize Pages | Visual selection, small sets | Manual per-document effort |
| Online PDF tools | Quick extraction, no install | File size limits on free tiers |
| Command-line (pdftk, qpdf) | Batch processing, scripting | Requires command-line knowledge |
| Python automation | Custom rules, large scale | Requires programming |
For recurring batch operations, wrap the command-line tool in a shell script that loops through a folder of PDFs. A single bash or PowerShell for-loop can process hundreds of documents in minutes. The command-line approach also integrates into automated document pipelines where PDFs arrive in a watched folder and processed files move to an output folder without any human intervention.
Automating Odd-Even Extraction With Python
Python libraries like PyPDF2 and pikepdf enable programmatic page extraction with custom logic beyond simple odd-even rules. A Python script can read a PDF, iterate through its pages, check the page number against any condition, and save matching pages to a new file. The logic can combine parity with other filters: extract odd pages but skip pages smaller than a certain dimension, or extract even pages only if they are not blank.
A basic PyPDF2 script for odd pages requires fewer than 15 lines of code. The script creates a reader object for the input PDF, a writer object for the output, loops through pages using enumerate with a start index of 1, checks if the page number modulo 2 equals 1 for odd or 0 for even, and adds matching pages to the writer. The script handles documents of any length consistently without the manual selection fatigue that limits GUI-based extraction.
Verifying the Extraction Result
After any extraction method, verify that the output contains the correct pages and that no pages were dropped. Open both the original and extracted PDFs side by side. Scroll to a few known pages from the original, such as pages 3, 7, and 15 for an odd-page extraction, and confirm they appear in the extracted document in the correct order. Check that the total page count of the extracted file matches expectations: an odd-page extraction from a 100-page document should produce 50 pages.
If page links or bookmarks in the original PDF pointed to specific page numbers, those references will break after extraction because the page numbering shifted. A bookmark that pointed to page 42 in the original now points to whatever content landed at the new page 42 position, which is unlikely to be correct. For documents that rely heavily on internal navigation, plan to rebuild bookmarks after extraction or use a tool like qpdf that preserves link destinations during the page selection process.
Extracting odd or even pages from a PDF is a mechanical operation that any of the methods above handles reliably. Picking the right method depends on how many documents you need to process and whether this is a one-time task or a recurring workflow. For the occasional extraction from a short document, Acrobat Pro's visual selection is the most intuitive. For batch processing a folder of scanned duplex documents, command-line tools process them all with a single command. For automated document pipelines where extraction rules combine with other processing steps, a Python script provides the flexibility that no GUI tool can match. Whichever method you pick, always verify the output page count and page order before archiving the original file or sending the extracted pages to their destination.
Handling Edge Cases in Odd-Even Extraction
Some documents do not follow a clean alternating pattern. A PDF with a cover page followed by duplex-scanned content has page 1 as a single-sided cover and pages 2 through 101 as double-sided scans. Extracting odd pages from the entire document would grab the cover and the front sides, which is the desired result for most use cases. If you need to exclude the cover, run the extraction on pages 2 through the end: 2-101odd. Most command-line tools and online services support combining a page range with the odd or even modifier.
Documents with mixed page sizes present another edge case. A PDF containing both letter and tabloid pages, when split by odd-even extraction, produces correct page selection but may cause issues in downstream systems that expect uniform page dimensions. After extraction, check the page sizes of the output document. If subsequent processes require uniform page dimensions, crop or resize the extracted pages to a consistent format before further processing.
Try Split PDF
No installation needed. Works directly in your browser.
