Hypertext Help with LaTeX

Lengths

A length is a measure of distance. Many LaTeX commands take a length as an argument. A length of one inch is specified by typing 1in or, to specify the same length using metric units, by typing 2.54cm.

Units

LaTeX knows about the following common units.

And the following less common units

Lengths may also be negative, for example, -1.5em.

Note that the number 0 by itself is not a length; it must be specified as 0in or 0pt, for example.

Length commands

A length may also be specified by a length command. An example is \parindent whose value specifies the current width of the indentation which begins paragraphs. Multiples of such length commands may be specified, for example by writing 2.5\parindent or -0.1\parindent.

Some length commands are

All length commands are robust and should not be preceded by a \protect command.

Rubber lengths

Most lengths have a fixed value. However, LaTeX also allows for "rubber" lengths; these have a natural length plus a degree of elasticity. For example, the \fill length command has a natural length of zero but is infinitely stretchable, so that a space of width \fill will try to stretch as much as possible. Multiplying a rubber length by a fixed factor destroys its elasticity: 0.5\fill becomes a rigid length with a value of zero.

Setting values for length commands

The following LaTeX commands define and manipulate the value of length commands

Commands that add space


Back to LaTeX Table of Contents


Revised 23 Oct 1995.