I always wanted to have a package like autonum. Well, it is finally here and its development is still under way, but I already have two problems:
It does not work with eqnarray.
When referencing to equation, there appears space in front of the number, e.g. ( 3).
Is that already possible to resolve or we'll have to wait?
\documentclass{article}
\usepackage{amsmath}
\usepackage{autonum}
\begin{document}
\begin{eqnarray}
a = g,\\
a = g.
\end{eqnarray}
\begin{equation}
a = g.
\label{tlabel}
\end{equation}
Reference to: (\ref{tlabel})
\begin{equation}
a = g.
\end{equation}
\end{document}
eqnarray– cgnieder Aug 22 '12 at 12:15