Menu

Search toolsChangelog

to move to openDescribe the problem, not the tool

Quarter-inch ruled US Letter paper

Set line spacing to 6.35 mm, the exact metric value of one quarter inch. With a half-inch edge margin and one inch of extra top space, the first rule is 1.5 inches from the top and 37 writing lines fit through the half-inch bottom margin.

Trimmed sizes from CSS Paged Media. An international inch is exactly 25.4 millimetres.

Measured baseline to baseline. Quarter-inch ruling is 6.35 mm.

Blank border at every edge. Your printer may impose a larger hardware margin.

Added below the top edge margin for a heading, name or binding.

Writing lines
37
First line from top edge (mm)
38.100
Last line from top edge (mm)
266.700
Length of each rule (mm)
190.500
Horizontal rule length (m)
7.049
Vertical guide
31.75 mm

The ruled sheet

ruled-paper-letter-6.35mm.svg · 1.1 KB

A complete SVG dimensioned in millimetres. Print at 100% or Actual size to keep the selected spacing.

Every horizontal rule

138.112.7203.2
244.4512.7203.2
350.812.7203.2
457.1512.7203.2
563.512.7203.2
669.8512.7203.2
776.212.7203.2
882.5512.7203.2
988.912.7203.2
1095.2512.7203.2
11101.612.7203.2
12107.9512.7203.2
13114.312.7203.2
14120.6512.7203.2
1512712.7203.2
16133.3512.7203.2
17139.712.7203.2
18146.0512.7203.2
19152.412.7203.2
20158.7512.7203.2
What to take away
  1. A quarter inch is exactly 6.35 millimetres under the international inch definition.

  2. The side margins leave 7.5 inches of rule length across US Letter.

  3. A line every quarter inch makes four baseline intervals per vertical inch.

How it works

The formula

firstLine = edgeMargin + headingSpace
bottom    = pageHeight - edgeMargin

if firstLine <= bottom:
  writingLines = floor((bottom - firstLine) / spacing) + 1
  lineY[n]      = firstLine + n x spacing
otherwise:
  writingLines = 0

ruledWidth     = pageWidth - 2 x edgeMargin
totalRuleLength = writingLines x ruledWidth

Every length is held as an integer number of micrometres, then written to
an SVG whose width and height are declared in millimetres.

What it assumes

  • Paper dimensions are trimmed physical sizes. The printer's hardware margin is not deducted; a requested line can still be clipped by a device that cannot reach it.
  • The first rule is the edge margin plus the extra heading space. Heading space does not replace the blank edge margin.
  • A line exactly on the bottom boundary is included, which is why a sheet can have one more rule than it has spacing intervals.
  • The vertical guide is measured from the paper edge and clamped inside the horizontal writing width. Zero omits it entirely.
  • Physical size is preserved only when the print dialogue uses 100% or Actual size. Fit-to-page deliberately rescales the sheet.

Common questions

Is quarter-inch ruling the same as 6 mm ruling?

No. A quarter inch is exactly 6.35 mm, so a 6 mm sheet gains more than two extra intervals over the writable height of Letter paper.

Why use SVG for printable ruled paper?

SVG stores physical dimensions and vector strokes. The rules stay sharp at printer resolution and do not depend on a screen-sized bitmap.

Sources

The full method, worked example and every assumption behind this figure are on Printable Ruled Paper Maker.