I'd like the (a) and (b) to be flushed to the left of the page, while "1+1=2" and "1+2=3" still remained aligned at the center of the page. What should I do?
Code:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{alignat*}{2}
(a) & & 1+1 & =2.\\
(b) & & 1+2 & =3.
\end{alignat*}
\end{document}
Output:


\tag{(a)}(or better just usealignand let the automatic numbering add(a)and use theleqnopackage option so that comes on the left – David Carlisle Apr 13 '18 at 07:47