PDF is the hardest common file format to merge. Unlike Word, you can’t paste. Unlike JPG, you can’t tile. Google “merge PDF” and you get ten results that all demand registration, uploads, and QR-code scans. Half a year on those tools and your resume, contracts, and medical records have been uploaded hundreds of times without your noticing.

This article teaches you a fully local method — files never leave your browser, no accounts, no traces. You will also learn 5 real scenarios where merging is appropriate, and 4 anti-patterns where merging looks right but will get you into trouble.

30-Second Overview

PDF merging happens in three technical steps:

  1. Load — unpack each PDF, extract the page objects.
  2. Copy pages — copy all page objects into a new PDF document in the order you specify.
  3. Save — repackage and output a new PDF, ideally named merged-YYYYMMDD.pdf.

Sounds simple. Real-world has 3 pitfalls: mixed page orientations (portrait mixed with landscape), encrypted PDFs (some password-protected files are simply unreadable), and original metadata loss (author, creation date). Each pitfall has a fix below.

5 Real Scenarios

Scenario 1: Job hunt — merge resume + portfolio

Typical input: resume.pdf (1 page) + portfolio.pdf (8 pages) → job-application merged.pdf (9 pages)

How to do it: Use PDF Tools — Merge mode. Drop resume.pdf first, then portfolio.pdf. Click “Merge and download”. In 9 seconds, merged.pdf lands in your Downloads folder.

Pitfall: The portfolio has mixed landscape and portrait pages — the merged output keeps each page’s original orientation. It will not auto-unify. Quick visual check before sending is enough for most cases, but if the job ad specifically required A4 portrait, you may need image-cropper to convert pages first.

Scenario 2: Expense reports — merge a week of receipts

Typical input: monday-uber.pdf + monday-lunch.pdf + … 14 receipts across one week → expense-2026-w27.pdf for finance

How to do it: Drop 14 PDFs, use the up/down arrows to order by timestamp, merge into a single 14-page PDF. The filename should include the week number.

Pitfall: Receipt PDFs are typically image-only PDFs (scans). You can merge them fine, but if finance needs them in Excel, you need to batch OCR them to extract text first, then export to CSV for pivot tables — that toolchain is still being built.

Scenario 3: Renovation — merge contract + quote + design drawings

Typical input: Decorator’s contract.pdf (5 pages) + your own quote.pdf (2 pages) + designer’s design.pdf (8 pages) → house-2026.pdf for your records

How to do it: Merge the three.

Pitfall: The designer’s design.pdf is A3 landscape on every page while the contract is A4 portrait. After merging, the page order is fine but every page is a different width. This is intrinsic to PDF: there is no concept of unified page size.

Scenario 4: Travel guide — merge multiple attraction PDFs

Typical input: 5 attraction PDFs → one complete tokyo-guide.pdf

How to do it: Simple merge.

Pitfall: Don’t merge huge files. Browsers have memory limits. If each file is 200 MB, merging 5 of them may hit the 100 MB cap our tool imposes (the limit exists to keep the tab from crashing). Use Split mode first to cut each file to under 50 pages, then merge.

Scenario 5: Academic paper — merge main text + references

Typical input: paper.pdf + references.pdfsubmission.pdf for journal submission

How to do it: Merge.

Pitfall: Many journals require continuous reference page numbers (pages 30-45). If the merged PDF resets numbering starting from page 28, you need a PDF editor to adjust (local merging doesn’t modify page numbers), or hand it to the journal’s typesetter.

4 Cases Where You Should NOT Merge

Anti-pattern 1: Mixing scanned pages of different sizes

Stuffing all your scans into one PDF means that later, when you want to share one of them, you cannot cleanly extract it. Merging creates a “cannot be split apart” situation.

Anti-pattern 2: Mixing confidential and non-confidential

Before merging, think — in 10 years when you need to share one of them, can you cleanly pick it out?

Anti-pattern 3: Mixing materials with different copyrights

A CC-BY article + a publisher’s full-copyright paper = one PDF that cannot be licensed separately. If you intend to publish them separately, think twice before merging.

Anti-pattern 4: Signed PDFs

Merging breaks digital signatures — the signature becomes invalid after merging, and the file needs to be re-signed. If the PDF is a freshly signed contract, receipt, or agreement, do not merge it.

  1. Name the output before merging — use the merged-YYYYMMDD-topic.pdf format.
  2. Keep the originals — merging produces a new file; the originals stay where they were.
  3. Open and verify — every time you merge, open the new PDF and flip through it. There is no “looks-right” PDF test; there is only “actually flipping through it” PDF test.
  4. Don’t merge above 100 MB — the 100 MB cap is honest design, not a compromise. If your files really are that large, split them into 50-page chunks first.

PDF merging used to mean “open Adobe Acrobat, install a plugin”. Now it lives in your browser. Total file size stays roughly the same — four 5 MB PDFs merge into ~20 MB (only a small amount of metadata gets added).

Try our PDF Tools. Merge mode is the default first tab — drop a file in and you’re done.