LaTeX/Useful Size Commands
The following type size commands, in order of increasing font size, are supported by LaTeX.
- \tiny
- \scriptsize
- \footnotesize
- \small
- \normalsize (default)
- \large
- \Large (capital "L")
- \LARGE (all caps)
- \huge
- \Huge (capital "H")
The default for \normalsize is 10-point, but it may differ for some Document Styles or their options. The actual size produced by these commands also depends on the Document Style and, in some styles, more than one of these size commands may produce the same actual size.
The new size takes effect immediately after the size command; if an entire paragraph or unit is set in a certain size, the size command should include the blank line or the \end{} which delimites the unit. (See Declarations.)
These commands change the size within a given scope, so for instance {\Large some words} will change the size of only some words, and does not affect the font in the rest of the document. These commands cannot be used in math mode. However, part of a formula may be set in a different size by using an \mbox command containing the size command.
Another use for size commands is to embed a single command inside the size-syntax, which affects all things within this command, e.g. \Large{\tableofcontents}.
See also Formatting