Font sizes, families, and styles
LaTeX normally chooses the appropriate font and font size based on the logical structure of the document (e.g. sections). In some cases, you may want to set fonts and sizes by hand.
Introduction
The syntax to set a font size or font style is easy:
This is a simple example, {\tiny this will show different font sizes} and also \textsc{different font styles}.
This example shows how to use the smallest available font (tiny) in LaTeX and the small caps style.
Font sizes
Font sizes are identified by special names, the actual size is not absolute but relative to the font size declared in the \documentclass
statement (see Creating a document in LaTeX).
In this example the {\huge huge font size} is set and
the {\footnotesize Foot note size also}. There's a fairly
large set of font sizes.
In the example, {\huge huge font size}
declares that the text inside the braces must be formatted in a huge font size. For a complete list of available font sizes see the reference guide.
Font families
By default, in standard LaTeX classes the serif typeface (a.k.a. roman) font is used. The other font typefaces (sans serif and typewriter, a.k.a. monospace) can be used by entering some specific commands
In this example command and switches are used.
\texttt{A command is used to change the style
of a sentence}
\sffamily
A switch changes the style from this point to
the end of the document unless other switch is used
You can set up the use of sans font as a default in LaTeX document by using the command:
\renewcommand{\familydefault}{\sfdefault}
Similarly, for using roman font as a default:
\renewcommand{\familydefault}{\rmdefault}
Font styles
The most common font styles in LaTeX are bold, italics and underlined, but there are a few more.
In the example at the introduction the small caps style was used. In this case the \textsl
command sets the slanted style which makes the text look a bit like italics but not quite. See the reference guide for a complete list of font styles.
If you want to go back to "normal" font style (default for the LaTeX class you are using), this can be done by using the \textnormal{...}
command or the \normalfont
switch command.
Reference guide
Font sizes
Command | Output |
---|---|
\tiny | |
\scriptsize | |
\footnotesize | |
\small | |
\normalsize | |
\large | |
\Large | |
\LARGE | |
\huge | |
\Huge |
Default font families
Font styles
Further reading
For more information see:
Overleaf guides
- Creating a document in Overleaf
- Uploading a project
- Copying a project
- Creating a project from a template
- Including images in Overleaf
- Exporting your work from Overleaf
- Working offline in Overleaf
- Using Track Changes in Overleaf
- Using bibliographies in Overleaf
- Sharing your work with others
- Debugging Compilation timeout errors
- How-to guides
LaTeX Basics
- Creating your first LaTeX document
- Choosing a LaTeX Compiler
- Paragraphs and new lines
- Bold, italics and underlining
- Lists
- Errors
Mathematics
- Mathematical expressions
- Subscripts and superscripts
- Brackets and Parentheses
- Fractions and Binomials
- Aligning Equations
- Operators
- Spacing in math mode
- Integrals, sums and limits
- Display style in math mode
- List of Greek letters and math symbols
- Mathematical fonts
Figures and tables
- Inserting Images
- Tables
- Positioning Images and Tables
- Lists of Tables and Figures
- Drawing Diagrams Directly in LaTeX
- TikZ package
References and Citations
- Bibliography management in LaTeX
- Bibliography management with biblatex
- Biblatex bibliography styles
- Biblatex citation styles
- Bibliography management with natbib
- Natbib bibliography styles
- Natbib citation styles
- Bibliography management with bibtex
- Bibtex bibliography styles
Languages
- Multilingual typesetting on Overleaf using polyglossia and fontspec
- International language support
- Quotations and quotation marks
- Arabic
- Chinese
- French
- German
- Greek
- Italian
- Japanese
- Korean
- Portuguese
- Russian
- Spanish
Document structure
- Sections and chapters
- Table of contents
- Cross referencing sections and equations
- Indices
- Glossaries
- Nomenclatures
- Management in a large project
- Multi-file LaTeX projects
- Hyperlinks
Formatting
- Lengths in LaTeX
- Headers and footers
- Page numbering
- Paragraph formatting
- Line breaks and blank spaces
- Text alignment
- Page size and margins
- Single sided and double sided documents
- Multiple columns
- Counters
- Code listing
- Code Highlighting with minted
- Using colours in LaTeX
- Footnotes
- Margin notes
Fonts
Presentations
Commands
Field specific
- Theorems and proofs
- Chemistry formulae
- Feynman diagrams
- Molecular orbital diagrams
- Chess notation
- Knitting patterns
- CircuiTikz package
- Pgfplots package
- Typing exams in LaTeX
- Knitr
- Attribute Value Matrices
Class files
- Understanding packages and class files
- List of packages and class files
- Writing your own package
- Writing your own class
- Tips