All articles
Convert July 17, 2026 3 min read

Combining Multiple Word Documents Into a Single PDF

When you need to bundle a packet of Word documents into one PDF, here's the cleanest workflow.

You have a cover letter, resume, transcripts, and three reference letters — all in Word — and the application needs one PDF. Here's the cleanest path.

Workflow 1: Convert each, then merge

  1. Open SwitchPDF Word to PDF
  2. Convert each Word file individually
  3. Open Merge PDF
  4. Upload all the PDFs in the order you want
  5. Click Merge, download the combined file

For 5-10 files this takes ~3 minutes total. The output PDF preserves each source document's layout faithfully.

Workflow 2: Merge in Word, then export

  1. Open the first Word document
  2. Go to the end, Insert → Object → Text from File
  3. Select the next Word document — it appends
  4. Repeat for each file
  5. Save As → PDF

Pros: single Word file you can edit later if needed.

Cons: combining Word documents can cause formatting issues — page breaks shift, headers/footers may not behave correctly, custom styles may clash. For documents with different styles, Workflow 1 is safer.

Workflow 3: LibreOffice CLI (for many files)

If you have 20+ files:

soffice --headless --convert-to pdf *.docx
pdftk *.pdf cat output combined.pdf

Two commands and you're done. Requires LibreOffice and pdftk installed. Best for bulk work; overkill for occasional use.

Choosing the right workflow

FilesUse this
2-3Workflow 2 (Word's Insert)
5-10Workflow 1 (convert each + merge)
20+Workflow 3 (CLI)

Common gotchas

Page numbers reset across documents. Each source document has its own pagination. After merging, the combined PDF has the original page numbers from each source (which won't be sequential). Fix: run Page Numbers on the merged result, with "skip first page" if you have a cover.

Different page sizes mix together. If some documents are US Letter and others are A4, the merged PDF has mixed page sizes. Looks awkward when printed. Fix: standardize page size in Word (Page Layout → Size) before converting.

Headers/footers from different sources collide. If each Word doc has its own header, the merged PDF inherits each source's headers on its pages. Usually fine, sometimes ugly. Fix: remove headers in the source files before converting, then add a unified header in the merged PDF if needed.

Order matters

The order you upload files to Merge PDF determines the order in the output. For application packets, standard order is:

  1. Cover letter
  2. Resume
  3. Transcripts (newest first)
  4. Reference letters
  5. Certificates/awards

Drag to reorder if you uploaded them out of sequence.

Bottom line

For application packets and similar bundles: convert each Word doc to PDF, then merge in the right order. Add page numbers to the result if helpful.

Related articles