I'm trying make a system of equations look like this:
Code: Select all
a = b
1 + 2 = 3
I tried the built-in commands as well as amsmath and I'm open to any solution.
(1)
Code: Select all
\begin{align*}
a=b \tag{1} \\
1+2=3
\end{align*}
Code: Select all
\begin{align*}
&a&=&b \tag{2} \\
&1+2&=&3
\end{align*}

(1) is what I start with (without tabs), but why isn't (2) looking the way it should be (like described in the first code box)?