Code: Select all
\begin{equation}
my equation code
\end{equation}
Code: Select all
\begin{equation}
my equation code
\end{equation}
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.