I want to edit the problem of equal signs to be under each other.
this code to me is perfect, so what would it be the problem.
You can also use split math environment:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
\begin{split}
e_{0,1} & = \left(x,y\right)_{w(x)}, \\
& = \left(x,y\right)_{w(x)}.
\end{split}
\end{equation}
\end{document}
This is the modified code:
\begin{equation}
\begin{aligned}
e_{0,1} & = \left(x,y\right)_{w(x)}. \\
& = \left(x,y\right)_{w(x)}.
\end{aligned}
\end{equation}
@Phelype Oleinik thanks, sir. Thanks, everyone.
align either aligned within equation.
– ivankokan
Jan 11 '20 at 22:46
align only.
– Sigur
Jan 11 '20 at 22:55
eqnarray. Usealignfromamsmath. Also, I think you can't wrapeqnarrayinequation. – Phelype Oleinik Jan 11 '20 at 22:00\begin{document} \begin{align} a & = b+c \ & = 2+2 \end{align} \end{document}`
– Zarko Jan 11 '20 at 22:07