I'm trying to show all of the steps for solving a linear equation like this:
\begin{aligned}
-4(6x - 5) & = 188 \\
(-4*6x)+(-4*-5) & \\
-24x + 20 & = 188 \\
-20 & = -20 \\
-24x & = 168 \\
/-24 & = /-24 \\
x & = -7
\end{aligned}
This renders as I would expect it to, but if I remove the = sign from the -20 step (and /-24), the -20 no longer aligns correctly on the right side. Is there any way to have it still align without putting the equals sign in there? Thanks!