Code: Select all
\begin{equation}
my equation code
\end{equation}
Code: Select all
\begin{equation}
my equation code
\end{equation}
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
Johannes_B wrote:That isn't just about the visuals, it destroys the math. Ships will sink, planes will fall from the sky, bridges will collapse.
\boldmath
, and switch back to normal font weight by \unboldmath
.Code: Select all
\documentclass{article}
\begin{document}
\begin{equation}
x^2 + \beta y^2 = 1
\end{equation}
\boldmath
\begin{equation}
x^2 + \beta y^2 = 1
\end{equation}
Inline math: $x^2 + \beta y^2 = 1$.
\unboldmath
\begin{equation}
x^2 + \beta y^2 = 1
\end{equation}
\end{document}
\everymath
and \everydisplay
to insert any commands before math, but I consider this more as hacks.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