LaTeX: Formula equal sign alignment

LaTeX \LaTeX LATEX formula equal sign alignment



1. Formula equal sign alignment

Use the following format in the formula:

\begin{aligned}
* &= * \\
* &= * \\
* &= *
\end{aligned}

When using it, just replace the "*" with the content you need.
Supplement: Need to be used in formula environment.

E.g:

\begin{aligned}
A &= B + C \\
&= C + D + C \\
&= 2C + D
\end{aligned}

The effect is as follows:
A = B + C = C + D + C = 2 C + D \begin{aligned} A &= B + C \\ &= C + D + C \\ &= 2C + D \end {aligned}A=B+C=C+D+C=2 c+D


Guess you like

Origin blog.csdn.net/PursueLuo/article/details/95647876