UnitPlanet

Paper Size Reference

Paper sizes fall into two systems: ISO 216 (A-series), used in virtually every country except the US, Canada, and parts of Latin America; and US customary sizes (Letter, Legal, Tabloid), defined in inches. The A-series has a unique property: every size is exactly half the next larger size, with the same 1:√2 aspect ratio, so an A3 sheet folded in half is exactly A4.

The formula

ISO 216 A-series aspect ratio:
  width : height = 1 : √2 ≈ 1 : 1.41421

A0 (base) = 841 × 1189 mm (1 m² area, exact)
Each subsequent size: halve the longer dimension
  A1 = 594 × 841 mm
  A2 = 420 × 594 mm
  A3 = 297 × 420 mm
  A4 = 210 × 297 mm
  A5 = 148 × 210 mm

PostScript points (used in PDF):
  1 inch = 72 pt
  width_pt  = width_mm / 25.4 × 72
  height_pt = height_mm / 25.4 × 72

  A4: 210 / 25.4 × 72 ≈ 595 pt × 297 / 25.4 × 72 ≈ 842 pt

Practical examples

Example 1 — Printing an A4 document on US Letter. A4 (210×297 mm) is slightly taller (297 vs 279 mm) and narrower (210 vs 216 mm) than Letter. Printing A4 on Letter without scaling clips 18mm from the bottom. Scale to 97% to fit safely.

Example 2 — Setting PDF page size in code. A4 in PostScript points: 595 × 842 pt. In Python with ReportLab: canvas.setPageSize((595, 842)). In PDFKit: { size: 'A4' }.

Example 3 — Choosing paper for a booklet. A5 booklet (148×210 mm) printed two-up on A4: each A4 sheet prints two A5 pages when folded and cut. A booklet of 20 A5 pages requires 5 A4 sheets printed double-sided.

Common mistakes

  • Printing A4 documents on Letter without rescaling. Most word processors default to the local paper size. An A4 document emailed internationally often prints with clipped margins. Check the recipient's paper size before sending print-ready files.
  • Using Letter dimensions in mm from memory. Letter is 8.5 × 11 inches = 215.9 × 279.4 mm, commonly rounded to 216 × 279. The rounding is acceptable for most purposes but not for precision CNC or die-cut work.
  • Confusing Tabloid and Ledger. Tabloid (11 × 17 in) and Ledger (17 × 11 in) are the same sheet — the name reflects orientation: Tabloid is portrait, Ledger is landscape. They are the same paper stock.

International and regional variations

NameWidth (mm)Height (mm)Width (in)Height (in)Points (W × H)Used in
A329742011.6916.54842 × 1191ISO 216 — large prints, engineering drawings
A42102978.2711.69595 × 842ISO 216 — global standard office paper
A51482105.838.27420 × 595ISO 216 — notebooks, booklets
Letter2162798.511612 × 792US, Canada, Mexico
Legal2163568.514612 × 1008US legal documents
Tabloid / Ledger2794321117792 × 1224US large-format newspapers, spreads

Click a row to highlight it. ISO 216 dimensions are exact; US sizes are defined in inches.

NameWidth (mm)Height (mm)Width (in)Height (in)Points (W×H)Notes
A329742011.6916.54842 × 1191ISO 216
A42102978.2711.69595 × 842ISO 216 — global default
A51482105.838.27420 × 595ISO 216
A61051484.135.83298 × 420ISO 216 — postcard
Letter2162798.511612 × 792US / Canada / Mexico
Legal2163568.514612 × 1008US legal
Tabloid / Ledger2794321117792 × 1224US large-format
Executive1842677.2510.5522 × 756US executive

Frequently Asked Questions

What is the size of A4 paper in inches?
A4 is 210 × 297 mm, which equals 8.27 × 11.69 inches. It is slightly narrower and taller than US Letter (8.5 × 11 inches). Most of the world uses A4 as the default office paper size.
What is the difference between A4 and US Letter?
A4 (210 × 297 mm) is taller and narrower than US Letter (216 × 279 mm / 8.5 × 11 in). Letter is 6 mm wider and 18 mm shorter. Documents formatted for one size may have layout issues when printed on the other.
What is the ISO 216 standard?
ISO 216 defines the A and B series paper sizes. A-series sizes have an aspect ratio of 1:√2 (≈1:1.414), so folding an A3 sheet in half gives exactly A4. The system is used in all countries except the US, Canada, and some parts of Latin America.
How many points is A4?
A4 in PostScript points: 595 × 842 pt (1 inch = 72 pt; 210mm / 25.4 × 72 ≈ 595 pt; 297mm / 25.4 × 72 ≈ 842 pt). PDF page sizes are specified in points, which is why you see these values in PDF tools.
What is legal paper used for?
US legal paper (8.5 × 14 inches) is used for legal documents, contracts, and government forms that require additional length. It is longer than letter but the same width. It has no ISO 216 equivalent.

Sources

  1. ISO 216:2007 — Writing paper and certain classes of printed matter: Trimmed sizes[archived 2026-05-28]

Related Tools