Math & Science ⇒ Changing font used in equations/math
Changing font used in equations/math
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Changing font used in equations/math
[1] The LaTeX Font Catalogue — Fonts with math support
Thorsten
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Changing font used in equations/math
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Changing font used in equations/math
Possibly you can change the shape of the font used in math expressions in general. Do you use the standard Computer Modern (CM) font or perhaps Latin Modern (LM) by the lmodern package?thedreamshaper wrote:[…] Can i somehow change the font for this letter alone ?
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Changing font used in equations/math
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Changing font used in equations/math
Code: Select all
\documentclass[11pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{fix-cm}
\SetSymbolFont{letters}{normal}{T1}{cmr}{m}{sl}
\SetSymbolFont{letters}{bold} {T1}{cmr}{b}{sl}
\begin{document}
\[
f(x)=a\cdot x^2+b\cdot x+c
\]
\end{document}
* Credits go to user CrazyHorse who presented this solution in another forum.
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Changing font used in equations/math

Changing font used in equations/math
Code: Select all
\usepackage{fouriernc,bm}
Re: Changing font used in equations/math
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Changing font used in equations/math
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10