I'm trying to get a subequation with 3 lines to have all equations centered horizontally relative to each other.
Right now I have:
\begin{subequations}\label{eq:propArea}
\begin{alignat}{2}
A &= first~special~subequation \\
B &= equation~much~bigger~then~others~above~and~below \\
C &= smaller~equation
\end{alignat}
\end{subequations}
As you can see equations are aligned at the & marks.
Using the gathered environment gives:
\begin{equation}\label{eq:propArea}
\begin{gathered}
A = first~special~subequation \\
B = equation~much~bigger~then~others~above~and~below \\
C = smaller~equation
\end{gathered}
\end{equation}
As you can see it aligns the equations to their centers, but I loose the sub-numbering that was so useful...
How can I get the two things?


gatherin another question. to get a better overview of what's available, you should read theamsmathusers guide; it's not very long.texdoc amsmath. – barbara beeton Aug 27 '17 at 18:15