我只是想像这个例子一样对齐方程(当然,我无法在网页上对齐这些方程):
∵△ABC ≌ △A′B′C′
∴∠ABC = ∠A′B′C′
∠ACB = ∠A′C′B′
∠BAC = ∠B′A′C′
如果我使用&
,这些将会太多空间......
答案1
更新:
您可以使用空格\,
或alignat
按照说明使用贡萨洛·梅迪纳
\documentclass{article}
\usepackage{mathtools} %% provides amsmath with additional features and bug fixes
\usepackage{amssymb} %% provides symbols like \because and \therefore
\begin{document}
Using \verb|align|
\begin{align*}
\because \triangle \mathrm{ABC} &= \triangle \mathrm{A^{'}B^{'}C^{'}} \\
\therefore\, \angle \mathrm{ABC} &= \angle \mathrm{A^{'}B^{'}C^{'}} \\
\angle \mathrm{ACB} &= \angle \mathrm{A^{'}C^{'}B^{'}} \\
\angle \mathrm{BAC} &= \angle \mathrm{B^{'}A^{'}C^{'} }
\end{align*}
Using \verb|alignat|
\begin{alignat*}{3}
&\because &\triangle \mathrm{ABC} &= \triangle \mathrm{A^{'}B^{'}C^{'}} \\
&\therefore &\angle \mathrm{ABC} &= \angle \mathrm{A^{'}B^{'}C^{'}} \\
& &\angle \mathrm{ACB} &= \angle \mathrm{A^{'}C^{'}B^{'}} \\
& &\angle \mathrm{BAC} &= \angle \mathrm{B^{'}A^{'}C^{'} }
\end{alignat*}
\end{document}