I would like to change equation numbering like: (1a) (1b) (1c). How should I do this? My code is like this:
\begin{equation}
first equation with number(1a)
\end{equation}
\begin{equation}
first equation with number(1b)
\end{equation}
\begin{equation}
first equation with number(1c)
\end{equation}
\renewcommand{\theequation}{\thesection\alph{equation}}is the way to go. – egreg Oct 19 '15 at 17:23