Code: Select all
If we have \begin{equation}\label{eq1} x^2+y^2=1 \end{equation}
I can get the equation numbering to be bold using
Code: Select all
\renewcommand{\theequation}{\textbf{(\arabic{equation})}}
Thank you in advance for you help.
Code: Select all
If we have \begin{equation}\label{eq1} x^2+y^2=1 \end{equation}
Code: Select all
\renewcommand{\theequation}{\textbf{(\arabic{equation})}}
NEW: TikZ book now 40% off at Amazon.com for a short time.
Code: Select all
\documentclass{article}
\usepackage{mathtools}
\begin{document}
\renewcommand{\theequation}{(\arabic{equation})}
\newtagform{bold}[\textbf]{}{}
\usetagform{bold}
\begin{equation}
E \neq m c^3
\label{ineq}
\end{equation}
That was inequality \ref{ineq}.
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.