title: "Merging PDFs for tax returns, job applications, and student submissions: a practical guide" slug: "merge-pdf-guide" date: "2026-04-20" excerpt: "Step-by-step instructions for combining multiple PDFs into one clean document — and what to watch out for when dealing with encrypted or scanned files." readingTime: "7 min read"
Combining PDFs is one of those tasks that sounds trivial until you actually need to do it and discover that every solution you find either requires a subscription, installs unwanted software, or asks you to upload sensitive financial documents to an unknown server.
This guide covers the practical reality: when you need to merge PDFs, what the operation actually does, and how to do it without uploading your files.
When you actually need to merge PDFs
The most common scenarios:
Job applications. Employers frequently ask for a single PDF containing your CV, cover letter, and portfolio samples. Most applicant tracking systems only accept one attachment per application. Merging beforehand means your documents arrive in the exact order you intended, not however the system decided to sort multiple attachments.
Tax filings. Many tax return submissions — particularly in the UK (self-assessment) and EU (various national systems) — require a single PDF containing all supporting documentation: P60 forms, bank statements, expense receipts, contractor invoices. Submitting a single file is cleaner than asking an assessor to manually download and open twelve separate attachments.
Student assignments. University submission portals (Turnitin, Moodle, Canvas) often accept a single PDF upload. If your assignment includes a main document plus appendices, charts, or data tables created in separate applications, merging them first ensures the examiner sees your work as intended.
Contractor invoices and statements. Clients increasingly want a single monthly PDF containing all invoices for the period, not a separate file for each job.
What merging PDFs does (and does not do)
Merging combines the pages of two or more PDFs into a single output file in the order you specify. The resulting document contains all the pages in sequence.
What merging does not do automatically:
- Update page numbers. If PDF A has pages numbered 1–5 and PDF B has pages numbered 1–3, the merged output will contain both numbering sequences. Page numbers embedded as text in the document content are not changed. Only the physical page sequence is affected.
- Merge bookmarks or outlines. Most merge tools (including pdf-lib) include bookmarks from the source files, but they may not be intelligently combined into a single navigable structure.
- Remove page headers or footers. If each source document has its own header with a document title, those remain unchanged.
- Preserve interactive form fields. PDF forms with fillable fields may have field names that conflict across documents. Behaviour varies by tool.
How to merge PDFs with OffCloud.tools
OffCloud.tools PDF Tools runs entirely in your browser. No file is uploaded to any server.
- Navigate to OffCloud.tools PDF Tools and select the Merge tab.
- Drop your PDF files onto the drop zone, or click Choose files. You can add up to 20 files.
- Drag the file cards to arrange the documents in the order you want in the final output.
- Click Merge PDFs. The merged file downloads to your device immediately.
The entire operation — file reading, page extraction, and PDF construction — happens inside your browser using the pdf-lib library compiled to WebAssembly. You can verify this by opening your browser's Network tab (F12) and confirming that no upload request is made.
Splitting and rotating: the other two operations you might need
Splitting extracts specific pages from a PDF. Useful when:
- You receive a 50-page bank statement but only need pages 12–15 for a specific period
- You want to extract the first page of a long document as a standalone cover sheet
- You need to split a large compiled document back into individual files
Rotating corrects orientation. Scanned documents frequently arrive rotated 90° because the scanner's auto-detect failed. Rotation sets the page rotation metadata in the PDF specification — it is a lossless operation that does not re-render the page content.
What to watch out for with encrypted PDFs
Password-protected PDFs cannot be loaded by most browser-based tools, including OffCloud.tools. pdf-lib's PDFDocument.load() call will throw an error when it encounters an encrypted document.
The error you will typically see: "Failed to load PDF — this file may be password-protected."
To work around this:
- Open the PDF in Adobe Acrobat Reader (free) and save it without password protection via File → Print → Microsoft Print to PDF (Windows) or Save as PDF (macOS).
- On macOS, open the PDF in Preview, enter the password when prompted, then export without a password via File → Export as PDF.
- Google Chrome can also render password-protected PDFs — open the file, enter the password, then use Ctrl/Cmd+P → Save as PDF to create an unlocked copy.
Once you have an unlocked version, merge as normal.
External resources
- PDF 1.7 specification (Adobe Systems) — The authoritative reference for the PDF file format.
- PDF/A archival standard overview — The ISO standard for long-term archival PDFs, used by governments and legal archives.
- pdf-lib documentation — The open-source library powering OffCloud.tools' PDF processing.