Font Size in LaTeX

Use size commands like \large or \small to change font size in LaTeX.

Quick Answer

latex
{\large This text is large.}
{\small This text is small.}

Document-Wide Font Size

Set the base font size for the entire document in the \documentclass declaration. The article class supports 10pt, 11pt, and 12pt.

latex
\documentclass[12pt]{article}  % 12pt base size
\documentclass[11pt]{report}   % 11pt base size

For sizes outside that range, use the extarticle class which adds 8pt, 9pt, 14pt, 17pt, and 20pt.

latex
\documentclass[14pt]{extarticle}

Writing your thesis in LaTeX?

MonsterWriter's LaTeX Workspace gives you real-time PDF preview with no compile limits — at a fraction of Overleaf's price. Works just like Overleaf, costs 11× less.

Try MonsterWriter free

Inline Size Commands

Wrap text in curly braces with a size command to change size for just that span. The braces limit the scope of the size change.

latex
Normal text, then {\Large larger text}, then normal again.

{\tiny Tiny disclaimer text.}

{\Huge Chapter title}

Size Command for Blocks

Use the environment form for larger sections of text to keep your source readable.

latex
\begin{small}
This entire block of text will be rendered
in the small font size, regardless of how
many paragraphs it spans.
\end{small}

Size Reference Table

Actual point sizes vary by the base size set in \documentclass:

Command10pt doc11pt doc12pt doc
\tiny5pt6pt6pt
\scriptsize7pt8pt8pt
\footnotesize8pt9pt10pt
\small9pt10pt11pt
\normalsize10pt11pt12pt
\large12pt12pt14pt
\Large14pt14pt17pt
\LARGE17pt17pt20pt
\huge20pt20pt25pt
\Huge25pt25pt25pt

Related Topics