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
- Open SwitchPDF Word to PDF
- Convert each Word file individually
- Open Merge PDF
- Upload all the PDFs in the order you want
- 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
- Open the first Word document
- Go to the end, Insert → Object → Text from File
- Select the next Word document — it appends
- Repeat for each file
- 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
| Files | Use this |
|---|---|
| 2-3 | Workflow 2 (Word's Insert) |
| 5-10 | Workflow 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:
- Cover letter
- Resume
- Transcripts (newest first)
- Reference letters
- 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
When You Actually Need to Convert PDF to PDF/A
PDF/A is required by courts and archives but unnecessary for most use cases. Here's how to tell which situation you're in.
Converting a PDF Back to PowerPoint for Editing
When the original .pptx is lost but you have the exported PDF, you can get back to an editable (sort of) deck.
Converting a Web Page to PDF for Archival or Reference
Web pages disappear, change, or paywall over time. Archiving important ones as PDFs preserves them in a stable format.