Possible Duplicate:
Changing the apperance of equation numbers with amsmath
I need to be able to make the labels of equations bold, but at the same time I need the citations to those equations to have normal style in the rest of the text.
Here is what I tried:
\let\theoldequation\theequation
\renewcommand*{\theequation}{\textbf{\theoldequation}} % bold equation numbers
and this (using etoolbox package)
\pretocmd{\theequation}{\textbf}{}{}
Output:

To solve this, I googled a lot, and could only come up with the following trials:
\renewcommand{\eqref}[1]{\textnormal{(\ref{#1})}}
and
\let\oldeqref\eqref
\renewcommand*{\eqref}{\textnormal{\oldeqref}} % bold equation numbers
and
\pretocmd{\eqref}{\textnormal}{}{}
and the last one:
\patchcmd{\eqref}{\textbf}{\textnormal}{}{}
But none yielded what I am required to do. Can you give a solution to this problem?


