Self-published authors, content creators, course creators, and business professionals all produce PDF eBooks — guides, manuals, workbooks, and thought leadership pieces distributed digitally. Writing each chapter or section in a separate document is a common and practical approach: it is easier to manage, easier to share with editors, and easier to update individual sections.
Merging those chapters into a final, polished eBook PDF is the last step. This guide covers the full workflow from chapter files to a professionally assembled eBook.
Assemble Your eBook PDF — Free
Merge chapters, add cover and ToC. No upload, no account.
Add to Chrome — FreeeBook PDF Structure
A professional PDF eBook has this structure, which determines the merge order:
- Cover page — Full-page cover image with title and author name
- Copyright page — Edition information, copyright notice, ISBN if applicable
- Dedication (optional)
- Table of contents — With page numbers; clickable if using hyperlinks
- Introduction / Preface
- Chapter 1, 2, 3... N
- Appendices (if any)
- About the author
- Resources / References (if applicable)
Step 1: Prepare Individual Chapter PDFs
Write each section in the tool that works best for you:
- Google Docs: File → Download → PDF Document
- Microsoft Word: File → Save As → PDF
- Canva: Download → PDF Standard or PDF Print
- Adobe InDesign: File → Export → Adobe PDF (best quality)
Step 2: Create a Cover Page
The cover page sets the professional tone. Options:
- Canva: Free eBook cover templates — download as PDF
- Google Slides: Design a cover slide at 8.5x11 size — File → Download → PDF
- Hire a designer: For commercial eBooks, a professional cover is worth the investment
Step 3: Create a Table of Contents
For the ToC, you need to know the page numbers in the final merged document. Calculate these before merging:
- Count pages in each chapter PDF (open in Chrome to see page count)
- Add up cumulative pages: Cover (1) + Copyright (1) + ToC (1) = content starts page 4
- Chapter 1 starts page 4, Chapter 2 starts page 4 + Chapter 1 length, etc.
- Build the ToC in Google Docs or Word with these page numbers
- Export the ToC as PDF
Step 4: Merge All Components
Merging with PDF Merge & Split
- Open the extension and go to the Merge tab.
- Add files in order: cover → copyright → toc → introduction → chapter1 → chapter2 → ... → about-author.
- Verify the order by reviewing the file list.
- Click Merge.
- Save as:
Your-Book-Title-v1.0.pdf
Step 5: Add Navigation Bookmarks
For a professional eBook, add clickable chapter navigation. Use pdftk:
# Create bookmarks.txt with your chapter structure
BookmarkBegin
BookmarkTitle: Introduction
BookmarkLevel: 1
BookmarkPageNumber: 5
BookmarkBegin
BookmarkTitle: Chapter 1: Getting Started
BookmarkLevel: 1
BookmarkPageNumber: 8
BookmarkBegin
BookmarkTitle: Chapter 2: Core Concepts
BookmarkLevel: 1
BookmarkPageNumber: 22
# Apply to the merged PDF
pdftk ebook-merged.pdf update_info bookmarks.txt output ebook-final.pdf
Step 6: Set Document Metadata
PDF metadata (title, author, subject) appears in PDF viewers and is important for professional distribution. Add it with pdftk:
# metadata.txt
InfoBegin
InfoKey: Title
InfoValue: Your eBook Title Here
InfoBegin
InfoKey: Author
InfoValue: Your Name
InfoBegin
InfoKey: Subject
InfoValue: The topic of your eBook
InfoBegin
InfoKey: Keywords
InfoValue: keyword1, keyword2, keyword3
pdftk ebook-final.pdf update_info metadata.txt output ebook-with-metadata.pdf
File Size and Optimization
A well-optimized PDF eBook is typically under 10MB. If your file is larger:
- Image-heavy chapters: compress images before inserting (150 DPI is sufficient for screen reading)
- Run Ghostscript compression:
gs -dPDFSETTINGS=/ebook -dBATCH -dNOPAUSE -sDEVICE=pdfwrite -sOutputFile=compressed.pdf input.pdf - Remove embedded fonts that are not used (Adobe Acrobat Pro can do this)
Start Building Your eBook
Merge your chapter PDFs in minutes. Free, local, private.
Install PDF Merge & SplitRelated Guides
- How to Merge PDF Files for Free
- Merge PDFs and Keep the Table of Contents
- How to Compress PDFs After Merging
Frequently Asked Questions
Is PDF a good format for eBooks?
PDF eBooks are best for fixed-layout content — technical manuals, visual guides, cookbooks, and anything where precise layout matters. For reflowable text that adapts to screen size, EPUB is a better format.
What should a professional PDF eBook include?
Cover page, copyright page, table of contents with page numbers, chapter content, and an about-the-author page. Also set document metadata (title, author) and add bookmarks for each chapter.
How do I add clickable chapter links to a PDF eBook?
Create the ToC in Word or Google Docs with hyperlinks and export as PDF — links become clickable. Or use pdftk to add bookmarks to the navigation panel via a metadata file after merging.
How do I protect a PDF eBook from copying?
PDF encryption with password protection restricts copying and printing. Adobe Acrobat Pro can apply permissions passwords. Note that PDF DRM is not fully reliable — consider watermarking for commercial distribution.
What page size should a PDF eBook use?
Common sizes: US Letter (8.5x11) for US market, A4 for international, or trade book size 6x9 inches. For screen-first reading, some authors use a wider format.