There's support for side by side and alignment in general, just mixing in sub-numbering in aligned environments is not so common and less supported by default. For example, there cannot be several labels for references in the same
align
environment line.
But it's easy doing it with
\parbox
or
\minipage
and in the same way above. Or here, I simply use
tabularx
, the X columns share the available space symmetrically, in the middle I just have a column for separation space. It's not so unusual: for arranging stuff in columns, a table is a natural choice.
Code: Select all
\documentclass{article}
\usepackage{amsmath}
\usepackage{tabularx}
\begin{document}
\noindent
Here are two funny equations :
\begin{subequations}
\begin{tabularx}{\textwidth}{Xp{2cm}X}
\begin{equation}
\label{eq-a}
a = b
\end{equation}
& &
\begin{equation}
\label{eq-b}
c = d
\end{equation}
\end{tabularx}
\end{subequations}
Equation \eqref{eq-a} is not the same as equation \eqref{eq-b}.
\end{document}

- subequation-table.png (12.03 KiB) Viewed 64904 times
Stefan