If you have been confused by PDF tools using "merge" and "append" interchangeably — or by tools that define them differently — this guide clarifies the terminology and explains when each operation is actually useful.
Merge or Append PDFs — Free
PDF Merge & Split handles sequential combination (append) for any number of files.
Add to Chrome — FreeThe Confusion Around Terminology
The PDF specification does not define "merge" as a specific operation. Different tools use the term differently:
| Context | How "merge" is used |
|---|---|
| Consumer tools (PDF Merge & Split, Smallpdf, etc.) | Sequential joining: all pages of file 1, then all pages of file 2, etc. |
| pdftk documentation | Distinguishes "cat" (sequential) from "shuffle" (interleaved) |
| Python pdf libraries | PdfMerger class does sequential concatenation |
| Adobe Acrobat | "Merge Files" = sequential join |
| Some enterprise tools | "Append" = add to existing file; "merge" = interleave |
Sequential Joining (What Most Tools Do)
When you use PDF Merge & Split, Adobe Acrobat, macOS Preview, or Ghostscript to "merge" PDFs, what actually happens is sequential joining:
- All pages from Document 1 (in order)
- Followed by all pages from Document 2 (in order)
- Followed by all pages from Document 3 (in order)
- ...and so on
This is what virtually all users want 99% of the time. Combine a cover letter (1 page) + resume (2 pages) + references (1 page) = 4-page document in sequence.
Sequential merge with PDF Merge & Split
- Install the extension and open it.
- Add your files in the desired order.
- Click Merge — output is all pages of file 1, then file 2, etc.
Interleaved Merging (The Less Common Case)
Interleaved merging alternates pages from two documents:
- Page 1 of Document A
- Page 1 of Document B
- Page 2 of Document A
- Page 2 of Document B
- ...and so on
When is interleaved merging actually useful?
Double-sided scanning without a duplex scanner: Many scanners scan only one side at a time. To scan a double-sided document:
- Scan all odd-numbered pages (front sides) →
odd-pages.pdf - Flip the paper stack and scan all even-numbered pages (back sides, in reverse order) →
even-pages-reversed.pdf - Interleave:
odd-pages.pdfwith the reversedeven-pages-reversed.pdfto get the correct page sequence
How to interleave with pdftk
# Interleave pages from two documents
pdftk A=odd-pages.pdf B=even-pages.pdf shuffle A B output combined.pdf
# Interleave with even pages in reverse order
pdftk A=odd-pages.pdf B=even-pages-reversed.pdf shuffle A Bend output combined.pdf
Bend means "pages of B in reverse order." This handles the case where the even pages were scanned from back to front.
Appending vs Creating a New File
Some tools offer an "append" mode that adds pages to an existing PDF file, rather than creating a new merged file. This distinction matters in some workflows:
- Create new file (standard merge): Documents A + B → new file C. Original files A and B are unchanged.
- Append to existing: Pages of B are added to the end of A, modifying A in place (or creating A-modified). Only makes practical sense in scripted workflows where a document grows incrementally.
For most users, creating a new file is the correct approach — it preserves your originals and gives you a clean combined output.
What About Metadata and Bookmarks During Merge?
When you merge two PDFs with document metadata (title, author, keywords) and bookmarks:
| Element | What happens during sequential merge |
|---|---|
| Document metadata (title, author) | Typically taken from the first document; second document's metadata is discarded |
| Bookmarks/outline | Usually dropped in basic tools; preserved in Adobe Acrobat Pro |
| Page content | Always preserved exactly as-is |
| Embedded fonts | Preserved per page |
| Form fields | Preserved in the pages; field names may conflict if same names exist in both documents |
Merge (Append) PDFs — Free, Local, Private
Sequential merging for any number of PDF files. Nothing uploaded.
Install PDF Merge & SplitRelated Guides
- How to Merge PDF Files for Free
- Merge PDFs and Keep the Table of Contents
- How to Merge Scanned Documents
Frequently Asked Questions
What is the difference between merging and appending a PDF?
In common usage, they mean the same thing. However, technically: "append" = add pages sequentially to the end. "Merge (interleaved)" = alternate pages from two documents. Most tools implement sequential appending when they say "merge."
When would I merge PDFs in an interleaved way?
Interleaved merging is useful for double-sided scanning — you scan odd pages in one pass and even pages in another, then interleave them to produce a correctly ordered document.
Does PDF Merge & Split support interleaved merging?
PDF Merge & Split supports sequential merging (appending). For interleaved merging, use pdftk with the shuffle operation: pdftk A=odd.pdf B=even.pdf shuffle A B output merged.pdf
What is the difference between merge and concatenate in PDF libraries?
"Concatenate" typically means simple sequential joining. "Merge" in some libraries refers to a more complex operation combining document structures and metadata. For most practical purposes, concatenation is what users need.
Which is faster: merge or append for large PDFs?
For simple sequential combination, performance is essentially the same. File size does not change between the two approaches.