How to Create Print-Friendly Documents
A document that looks great on screen does not necessarily print well. Color, margins, fonts, page breaks — every detail affects the final print result. This guide shows you how to create print-optimized documents from the start.
Paper Size and Margins
Correct paper settings are the foundation of print-friendly documents:
| Paper | Size | Recommended Margins |
|---|---|---|
| A4 | 210 x 297 mm | 25 mm on all sides |
| Letter | 8.5 x 11 in | 1 inch on all sides |
| Legal | 8.5 x 14 in | 1 inch on all sides |
If binding is needed, add 10-15 mm to the inner margin for the binding area.
Font Selection
Print fonts have different considerations than screen fonts:
- Serif fonts (Times New Roman, Georgia) — Best for body text; serifs guide the eye in print
- Sans-serif fonts (Arial, Helvetica) — Best for headings and short text; clean and sharp
- Recommended body size — 10-12pt; smaller sizes impair readability
- Line spacing — 1.2-1.5x line height is optimal for reading
Color Management
Screens use RGB color mode, but printers use CMYK. Colors on screen will look different in print:
- Avoid large solid black areas — Large black fills may print unevenly
- Avoid very light text — Very light gray text may be nearly invisible when printed
- Minimize color use — Ensure documents remain legible in black and white
- Use contrasting colors for charts — Ensure sufficient contrast between data series
Tip: Always preview your document in grayscale before printing to verify that all content remains readable without color.
Page Break Control
Good pagination makes documents more professional:
- Avoid orphans and widows — A paragraph's first line should not appear alone at the bottom of a page, nor its last line alone at the top
- Keep tables together — Avoid splitting tables across pages when possible
- Keep headings with content — Headings should stay on the same page as the text that follows
- Use page breaks — Insert page breaks between sections instead of multiple blank lines
Image Resolution
Printing requires higher image resolution than screen display:
- Minimum 150 DPI — Basic print quality
- Recommended 300 DPI — High-quality printing
- JPEG for photos — High quality (85%+)
- PNG/SVG for charts — Ensures crisp lines
CSS @media print (Web Documents)
For web-based documents, CSS @media print controls print-specific styles:
- Hide navigation bars, sidebars, and non-content elements
- Adjust font sizes and line spacing
- Remove background colors and decorative images
- Expand link URLs for visibility
Conclusion
Creating print-friendly documents requires attention to detail from the very beginning. Correct paper settings, appropriate fonts, proper color usage, and good pagination control — these seemingly small details collectively determine whether a printed document looks professional and polished.
References
- W3C. "CSS Paged Media Module Level 3." W3C, 2023. https://www.w3.org/TR/css-page-3/
- MDN Web Docs. "Using CSS media queries for print." Mozilla Developer Network, 2024. https://developer.mozilla.org/en-US/docs/Web/CSS/@media
- Bringhurst, Robert. The Elements of Typographic Style. Version 4.0. Hartley & Marks, 2012.
- W3C. "CSS Fragmentation Module Level 3." W3C, 2023. https://www.w3.org/TR/css-break-3/