List of Available Fonts in LaTeX
📂WritingList of Available Fonts in LaTeX
Basic Fonts
These are the default fonts that can be used without installing any packages.
Roman
Used with \mathrm{words}
or \rm{words}
.
\mathrm{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\mathrm{abcdefghijklmnopqrstuvwxyz}
abcdefghijklmnopqrstuvwxyz
\mathrm{0123456789}
0123456789
Caligraphic
Used with \mathcal{words}
or \cal{words}
. In mathematics, it is commonly used to denote operators such as Fourier transform and Laplace transform. Only uppercase letters are possible; lowercase letters are rendered as entirely different characters.
\mathcal{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Sans-serif
Used with \mathsf{words}
or \sf{words}
.
\mathsf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\mathsf{abcdefghijklmnopqrstuvwxyz}
abcdefghijklmnopqrstuvwxyz
\mathsf{0123456789}
0123456789
Typewriter
Used with \mathtt{words}
or \tt{words}
.
\mathtt{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\mathtt{abcdefghijklmnopqrstuvwxyz}
abcdefghijklmnopqrstuvwxyz
\mathtt{0123456789}
0123456789
Italic
Used with \mathit{words}
or \it{words}
. Uppercase and lowercase letters remain the same as the default font, but numbers change. However, the letter spacing is tighter compared to the default font.
\mathit{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\mathit{abcdefghijklmnopqrstuvwxyz}
abcdefghijklmnopqrstuvwxyz
\mathit{0123456789}
0123456789
Bold
Used with \mathbf{words}
or \bf{words}
.
\mathbf{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\mathbf{abcdefghijklmnopqrstuvwxyz}
abcdefghijklmnopqrstuvwxyz
\mathbf{0123456789}
0123456789
Greek and Bold Greek Letters
To render Greek letters in bold, use \boldsymbol
instead of \bf
. Additionally, uppercase Greek letters that match the Latin alphabet do not exist distinctly. For example, A does not exist since it is identical to A.
\Gamma:Γ\Delta:Δ\Lambda:Λ\Xi:Ξ\Pi:Π\Sigma:Σ\Upsilon:Υ\Phi:Φ\Psi:Ψ\Omega:Ω\alpha:α\beta:β\gamma:γ\delta:δ\epsilon:ϵ\zeta:ζ\eta:η\theta:θ\iota:ι\kappa:κ\lambda:λ\mu:μ\nu:ν\xi:ξ\pi:π\rho:ρ\sigma:σ\tau:τ\upsilon:υ\phi:ϕ\chi:χ\psi:ψ\omega:ω
\boldsymbol{\Gamma}:Γ\boldsymbol{\Delta}:Δ\boldsymbol{\Lambda}:Λ\boldsymbol{\Xi}:Ξ\boldsymbol{\Pi}:Π\boldsymbol{\Sigma}:Σ\boldsymbol{\Upsilon}:Υ\boldsymbol{\Phi}:Φ\boldsymbol{\Psi}:Ψ\boldsymbol{\Omega}:Ω\boldsymbol {\alpha}:α\boldsymbol {\beta}:β\boldsymbol {\gamma}:γ\boldsymbol {\delta}:δ\boldsymbol {\epsilon}:ϵ\boldsymbol {\zeta}:ζ\boldsymbol {\eta}:η\boldsymbol {\theta}:θ\boldsymbol {\iota}:ι\boldsymbol {\kappa}:κ\boldsymbol {\lambda}:λ\boldsymbol {\mu}:μ\boldsymbol {\nu}:ν\boldsymbol {\xi}:ξ\boldsymbol {\pi}:π\boldsymbol {\rho}:ρ\boldsymbol {\sigma}:σ\boldsymbol {\tau}:τ\boldsymbol {\upsilon}:υ\boldsymbol {\phi}:ϕ\boldsymbol {\chi}:χ\boldsymbol {\psi}:ψ\boldsymbol {\omega}:ω
Varied Greek Letters
These can be used by appending var
to the base form, though not all characters are available.
\varGamma:Γ\varDelta:Δ\varLambda:Λ\varXi:Ξ\varPi:Π\varSigma:Σ\varUpsilon:Υ\varPhi:Φ\varPsi:Ψ\varOmega:Ω\varepsilon:ε\vartheta:ϑ\varkappa:ϰ\varpi:ϖ\varrho:ϱ\varsigma:ς\varphi:φ\boldsymbol{\varepsilon}:ε\boldsymbol{\vartheta}:ϑ\boldsymbol{\varkappa}:ϰ\boldsymbol{\varpi}:ϖ\boldsymbol{\varrho}:ϱ\boldsymbol{\varsigma}:ς\boldsymbol{\varphi}:φ
Packages
Blackboard Bold
It requires loading \usepackage{amsfonts}
. Used with \mathbb{words}
. In mathematics, it is typically employed to denote number sets. N,Z,Q,R,C represents sets of natural numbers, integers, rationals, reals, and complex numbers respectively. Only uppercase letters are supported.
\mathbb{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
Fraktur
It requires loading \usepackage{amsfonts}
. Used with \mathfrak{words}
or \frak{words}
.
\mathfrak{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ
\mathfrak{abcdefghijklmnopqrstuvwxyz}
abcdefghijklmnopqrstuvwxyz
\mathfrak{0123456789}
0123456789
Script
It can be used by loading \usepackage{mathrsfs}
. Used with \mathscr{words}
. Only uppercase letters are supported.
\mathscr{ABCDEFGHIJKLMNOPQRSTUVWXYZ}
ABCDEFGHIJKLMNOPQRSTUVWXYZ