我想输入对齐的方程式
x = a
y = b
z = c
我只知道两种方法可以实现这一点。一种是使用\begin{align}
,另一种是使用\begin{cases}
包装在内\begin{equations}
。
还有其他方法可以实现对齐方程吗?
答案1
\documentclass{article}
\usepackage{amsmath}
\begin{document}
align
\begin{align}
x &= a \\
y &= b \\
z &= c
\end{align}
alignat
\begin{alignat}{1}
x &= a \\
y &= b \\
z &= c
\end{alignat}
flalign
\begin{flalign}
x &= a \\
y &= b \\
z &= c
\end{flalign}
equation/aligned
\begin{equation}
\begin{aligned}
x &= a \\
y &= b \\
z &= c
\end{aligned}
\end{equation}
equation/alignedat
\begin{equation}
\begin{alignedat}{1}
x &= a \\
y &= b \\
z &= c
\end{alignedat}
\end{equation}
equation/cases
\begin{equation}
f(x)=\begin{cases}
-1 &x = a \\
0 &y = b \\
1 &z = c
\end{cases}
\end{equation}
\end{document}
amsldoc.pdf
(texdoc amsmath
在 texlive 中)中有更多示例