For single split equations I would normally achieve this with the equation environment and the \eqno command using the following code
Code: Select all
\begin{equation*}
\label{eq:abcd}
\refstepcounter{equation}
a = b \qquad c = d
\eqno{(\theequation \textit{a,b})}
\end{equation*}
Code: Select all
\begin{align*}
\label{eq:abcd}
\refstepcounter{equation}
a = b \qquad c = d
\eqno{(\theequation \textit{a,b})} \\
\label{eq:abcd2}
\refstepcounter{equation}
a = b \qquad c = d
\eqno{(\theequation \textit{a,b})}
\end{align*}
Note that including a \tag command according to
Code: Select all
\tag{(\theequation \textit{a,b})}
Does anybody know of any way of achieving the desired (a,b) tag for equations on multiple lines?