Font Size in LaTeX
Use size commands like \large or \small to change font size in LaTeX.
Quick Answer
{\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.
\documentclass[12pt]{article} % 12pt base size
\documentclass[11pt]{report} % 11pt base sizeFor sizes outside that range, use the extarticle class which adds 8pt, 9pt, 14pt, 17pt, and 20pt.
\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 freeInline 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.
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.
\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:
| Command | 10pt doc | 11pt doc | 12pt doc |
|---|---|---|---|
| \tiny | 5pt | 6pt | 6pt |
| \scriptsize | 7pt | 8pt | 8pt |
| \footnotesize | 8pt | 9pt | 10pt |
| \small | 9pt | 10pt | 11pt |
| \normalsize | 10pt | 11pt | 12pt |
| \large | 12pt | 12pt | 14pt |
| \Large | 14pt | 14pt | 17pt |
| \LARGE | 17pt | 17pt | 20pt |
| \huge | 20pt | 20pt | 25pt |
| \Huge | 25pt | 25pt | 25pt |
Related Topics
More LaTeX Topics