The Silent Killer of Paperback Submissions
When an author submits an interior PDF to Amazon Kindle Direct Publishing (KDP), the file does not go to a human prepress operator. It passes through an automated preflight raster engine.
The most common reason for instantaneous rejection is Gutter Boundary Violation.
As a paperback increases in page count, the physical thickness of the book block (the spine) curves into the binding glue. If your inner margin (the gutter) does not widen proportionally, the words near the inside spine become physically unreadable without tearing the book open.
The Official KDP Gutter Margin Formula
Amazon enforces strict minimum gutter dimensions based on the total page count of your manuscript:
| Page Count Class | Minimum Gutter (Inches) | Minimum Gutter (Millimeters) | Recommended Safe Gutter (mm) |
|---|---|---|---|
| 24 to 150 pages | 0.375 in | 9.6 mm | 16.0 – 18.0 mm |
| 151 to 300 pages | 0.500 in | 12.7 mm | 20.0 – 23.0 mm |
| 301 to 500 pages | 0.625 in | 15.9 mm | 23.0 – 26.0 mm |
| 501 to 700 pages | 0.750 in | 19.1 mm | 26.0 – 29.0 mm |
| 701 to 828 pages | 0.875 in | 22.3 mm | 29.0 – 32.0 mm |
The "Object Bounds" Trap
A frequent mistake made by Microsoft Word and Adobe InDesign users is that invisible bounding boxes of images, headers, or decorative rules can cross into the gutter zone even if the visible ink does not.
KDP’s preflight engine flags the vector boundary of the object, triggering an automatic rejection message: "Your interior file contains text or elements outside the margins."
How BookTemplatesPro Solves This Automatically
In all BookTemplatesPro LaTeX templates, page geometry is strictly governed via the geometry package with two-sided asymmetric margins:
\usepackage{geometry}
\geometry{
paperwidth=129mm,
paperheight=198mm,
top=18mm,
bottom=20mm,
inner=23mm, % Guaranteed compliance for 150-380 page books
outer=19mm,
footskip=11mm,
headheight=0mm,
headsep=0mm
}
By locking inner=23mm and outer=19mm, your book guarantees comfortable optical reading ergonomics and 100% first-pass approval through Amazon's preflight scanner.