除了案例和对齐之外,还有其他方法可以输入对齐方程式吗?

除了案例和对齐之外,还有其他方法可以输入对齐方程式吗?

我想输入对齐的方程式

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 中)中有更多示例

相关内容