·5 min read

How to Merge PDF Files for Free (No Sign-Up Required)

Need to combine multiple PDFs into one? Here are the best free methods — online and offline — with step-by-step instructions.

Why Merge PDFs?

Common scenarios where you need to combine PDFs:

  • Combine scanned pages into a single document
  • Merge invoices into one file for accounting
  • Combine chapters of an ebook or report
  • Attach supporting documents to an application
  • Consolidate receipts for expense reports

Method 1: Browser-Based (Easiest)

The fastest way without installing anything:

1. Open your PDF viewer in Chrome or Edge 2. Press Ctrl + P (or Cmd + P on Mac) 3. Select "Save as PDF" as the printer 4. Repeat for each PDF 5. Use a free online merger tool to combine them

Limitation: This method works for quick jobs but doesn't preserve bookmarks or links.

Method 2: Windows — Microsoft Print to PDF

1. Open File Explorer 2. Select all PDF files you want to merge 3. Right-click → Print 4. Choose "Microsoft Print to PDF" as the printer 5. Save the combined file

Method 3: Mac — Preview App

Mac's built-in Preview app can merge PDFs natively:

1. Open the first PDF in Preview 2. Enable Thumbnails (View → Thumbnails) 3. Drag the second PDF file into the thumbnail sidebar 4. Position it where you want it 5. File → Export as PDF

This preserves formatting and is completely free.

Method 4: Command Line (For Power Users)

If you have Python installed:

```bash pip install PyPDF2 ```

```python from PyPDF2 import PdfMerger merger = PdfMerger() merger.append("file1.pdf") merger.append("file2.pdf") merger.append("file3.pdf") merger.write("merged.pdf") merger.close() ```

Quality Tips

  • Order matters — make sure pages are in the right sequence before merging
  • Check page sizes — if PDFs have different page sizes, the merged file may look inconsistent
  • File size — merging large PDFs creates very large files. Compress after merging
  • Bookmarks — most free methods don't preserve bookmarks. Use dedicated software if you need them

After Merging: Compress Your PDF

Merged PDFs can get large. Compress them using Snelfo's PDF tools:

Convert and compress your PDF with Snelfo →

Free, private, no sign-up.

← Back to Blog