How to combine PDFs without Adobe Acrobat

Updated 2026-07-31 · 7 min read

Short answer: macOS can merge PDFs for free in Preview: open one file, show Thumbnails, drag the second PDF into the sidebar, then use File, Export as PDF. Windows 11 has no built-in merge and Google Drive cannot combine files either, so on those platforms use a free browser-based merge tool.

Acrobat Pro is the reference implementation and it costs roughly the price of a streaming subscription every month, billed annually. If merging is the only thing you need, you are paying for a page editor, a form designer, a redaction engine and a PDF printer you will not use. Here is what each free route actually does.

macOS: Preview does merge, with one trap

Preview is a real PDF editor pretending to be a viewer. It has merged PDFs since Mac OS X 10.6 and there is nothing to install.

  1. Open the first PDF in Preview Double-click it, or right-click and choose Open With → Preview if another app has claimed the file type.
  2. Show the thumbnail sidebar Press ⌥⌘2, or use View → Thumbnails. Nothing else works without it.
  3. Drag the second PDF into the sidebar Drag from Finder and drop it between two thumbnails, so a horizontal insertion line appears. Do not drop it on top of a thumbnail.
  4. Reorder if needed Drag thumbnails up and down. Select several with ⌘-click or Shift-click and move them as a group.
  5. Export, do not just save Use File → Export as PDF. Saving in place can leave the second document embedded as an annotation rather than flattened into the page tree.

Watch out: The trap is step 3. Dropping a PDF onto a page thumbnail attaches it as an annotation instead of inserting its pages. The file looks merged in Preview and arrives as a single page with a paperclip icon for everyone else. If your merged file is suspiciously small, this is what happened.

Windows: there is no built-in way, and that surprises people

Windows 11 ships a PDF viewer inside Edge and a virtual printer called Microsoft Print to PDF. Neither can combine two files.

ToolViewPrint to PDFMerge two PDFs
Microsoft EdgeYes, with annotationYes, one documentNo
Microsoft Print to PDFNoYes, one document at a timeNo
File ExplorerPreview pane onlyNoNo
Microsoft WordOpens and converts, reflowing the layoutYesOnly by inserting each PDF as an object, which rasterises it
Photos / PaintNoNoNo

What Windows tools can and cannot do with PDFs.

The Word route deserves a specific warning. Insert → Object → Text from File will place a PDF in a Word document, but Word converts each page to a picture and often only imports the first page. The output is a document of images: unsearchable, large, and unprintable at any real quality. It is not a merge.

Google Drive cannot merge PDFs either

This one costs people the most time, because it feels like it should work. Drive stores PDFs, previews them, and can OCR one into a Google Doc. It has no combine function. Opening two PDFs as Docs and pasting one into the other destroys the layout entirely, since the conversion turns a fixed-layout document into a reflowing one. Third-party Workspace add-ons exist, but they upload your files to that vendor, which is usually the opposite of what someone choosing Drive for privacy reasons wanted.

Browser tools: the answer on Windows, and fine everywhere

A merge tool built on WebAssembly does the work inside the page, on your own machine. The distinction matters: an "online PDF merger" usually means your document is uploaded to someone else's server, processed there, and deleted on a promise. A browser-based tool never sends the bytes anywhere.

  1. Open merge PDF and drop the files in.
  2. Drag them into order and merge.
  3. Download the result. No account, no watermark, no page limit.

Merge PDFs on Windows, Mac, Linux or ChromeOS, with no upload and no install.

Command line, if you already live there

Three tools do this well and all are free. qpdf is the most correct: it preserves structure and is actively maintained. pdftk is the classic and still fine for simple jobs. Ghostscript re-writes the file, which can shrink it but also re-encodes images.

# qpdf, cleanest structural merge
qpdf --empty --pages a.pdf b.pdf c.pdf -- merged.pdf

# qpdf, merge only pages 1-3 of a.pdf with all of b.pdf
qpdf --empty --pages a.pdf 1-3 b.pdf -- merged.pdf

# pdftk, the classic
pdftk a.pdf b.pdf cat output merged.pdf

# Ghostscript, re-writes and often compresses
gs -dBATCH -dNOPAUSE -q -sDEVICE=pdfwrite \
   -sOutputFile=merged.pdf a.pdf b.pdf

Note: On macOS there is also a hidden Automator action at /System/Library/Automator/Combine PDF Pages.action, and a Python script Apple ships with Preview's print pipeline. Both work, and both are more effort than dragging thumbnails.

Choosing between them

SituationBest option
Mac, two or three files, one-offPreview
Windows, any number of filesBrowser merge tool
Confidential documentsBrowser tool that runs locally, or qpdf offline
Same merge every weekqpdf or pdftk in a script
Hundreds of filesCommand line, driven by a loop
You need bookmarks nested per source fileqpdf, or a tool that advertises outline preservation
You already pay for AcrobatAcrobat: Tools → Combine Files

What you give up by not buying Acrobat

Honestly, not much for merging. Where Acrobat still earns its price is true redaction that removes the underlying text rather than covering it, PDF/A validation and conversion, accessibility tagging for screen readers, and Bates numbering for legal discovery. Combining files is not on that list. Neither is reordering pages, splitting or compression, all of which have solid free equivalents.

Frequently asked questions

Can Windows 11 merge PDF files without software?

No. There is no built-in merge in Windows 10 or 11. Microsoft Print to PDF handles one document at a time and Edge can only view and annotate. A browser-based merge tool is the closest thing to a built-in option.

How do I merge PDFs on a Mac for free?

Open the first PDF in Preview, press Option+Command+2 to show thumbnails, drag the second PDF into the sidebar between two page thumbnails, then choose File then Export as PDF. Do not drop the file on top of a thumbnail or it becomes an attachment.

Can Google Drive combine two PDFs?

No. Drive can store, preview and OCR PDFs but has no merge function. Converting them to Google Docs and pasting one into the other destroys the fixed layout, so it is not a workaround.

Is a free PDF merger safe for confidential documents?

Only if it processes files in your browser rather than uploading them. Check whether the tool describes local or client-side processing. If a file has to be uploaded to be merged, treat the document as having left your control.

Does Adobe Acrobat Reader merge PDFs?

The free Reader does not. Merging is a paid Acrobat feature, and Adobe also offers a limited web version that requires signing in and caps free use.

Tools

Keep reading