How to Duplicate Pages in a PDF File
Copy and repeat pages in your PDF with these simple methods using free and professional tools.
Why Duplicate PDF Pages?
There are many situations where you need to duplicate pages in a PDF. You might need multiple copies of a form for different recipients. You may want to repeat a reference page throughout a long document. Teachers often need to duplicate worksheet or test pages for multiple students. Print shops frequently need to duplicate pages for multi-up printing layouts.
Whatever your reason, duplicating PDF pages is straightforward with the right tool. Here are the best methods for every platform and budget.
Duplicating Pages in Adobe Acrobat
Adobe Acrobat Pro
Acrobat Pro makes page duplication easy. Open your PDF and open the Page Thumbnails panel on the left sidebar. Right-click the page you want to duplicate and select Duplicate Pages. Choose how many copies you want and where to insert them. Click OK.
You can also use the Organize Pages tool. Go to Tools > Organize Pages, select the pages you want to copy, and click the Duplicate button in the toolbar. This method gives you more visual control over placement.
Adobe Acrobat Reader
The free Acrobat Reader does not include a page duplication feature. You need Acrobat Pro or one of the free alternatives listed below.
Free Online Tools to Duplicate PDF Pages
iLovePDF
iLovePDF does not have a dedicated duplicate tool, but you can use its Merge function to achieve the same result. Upload the same PDF twice, and in the merge interface, select only the specific pages you want to duplicate from each copy. Rearrange the page order as needed and merge.
PDF24 Tools
PDF24 offers a more direct approach. Its Edit PDF tool lets you select individual pages and duplicate them with a single click. Open your PDF in the PDF24 editor, select the page, and click the duplicate icon. The duplicated page appears right after the original. Repeat as needed.
Sejda PDF
Sejda has a built-in page duplication feature in its PDF editor. Upload your file, select the pages to duplicate, and specify how many copies you need. Sejda processes everything in your browser for files under 50 pages, keeping your data private.
Duplicating Pages on Mac Preview
Mac Preview does not have a direct duplicate button, but you can duplicate pages with a simple workaround. Open your PDF in Preview and show the thumbnail sidebar. Select the page you want to copy, then press Command + C to copy. Click where you want to insert the copy and press Command + V to paste. The copied page appears as a duplicate in your document.
Alternatively, export the specific page as a separate PDF using File > Export with the page range set to the target page. Then open both the original and the exported copy in Preview, and drag the exported page from one thumbnail sidebar to the other.
Command-Line PDF Page Duplication
pdftk
pdftk is the most straightforward command-line tool for duplicating pages. To duplicate page 3 three times in a document:
pdftk input.pdf cat 1 2 3 3 3 4-end output output.pdf
The cat command lets you specify any page sequence you want. Just repeat the page number as many times as you need it. You can mix and match pages from different positions freely.
To duplicate the entire document multiple times:
pdftk A=input.pdf cat A A A output tripled.pdf
qpdf
qpdf is another powerful command-line option. While it does not have a dedicated duplicate command, you can use its page selection syntax:
qpdf --empty --pages input.pdf 1-2,3,3,3,4-z -- output.pdf
qpdf is particularly good at preserving PDF structure, metadata, and form fields during page manipulation. It is available on all platforms and installs easily through most package managers.
Python with PyPDF
For programmatic duplication, PyPDF (formerly PyPDF2) gives you full control:
from pypdf import PdfReader, PdfWriter
Read the source PDF, create a writer, and add pages in whatever order and quantity you need. This approach works well for automating bulk duplication tasks or integrating into larger document processing pipelines.
Tips for Working with Duplicated Pages
When duplicating form pages, be aware that form field names may conflict. If you fill in one copy of a duplicated form, all copies with the same field names will show the same data. To avoid this, flatten the form fields after filling each copy, or rename the fields in each duplicate.
Large documents with many duplicated pages can grow in file size quickly. Consider using a PDF compression tool after duplication to keep the file manageable, especially if you plan to share it via email.