这是我的问题:我想写出许多等价的方程组。因此,我希望第一个方程组在左边,然后是箭头(例如 \Leftrightarrow,因为它们是等价的 :)),第二个方程组在右边,然后其他的方程组与第二个方程组垂直对齐。基本上,我想做与 align 环境相同的事情,但是使用方程组。然而,我还是没搞清楚。
以下是我尝试过的:
\documentclass[11pt]{article}
\usepackage{envmath}
\begin{document}
\[
\begin{System}
x + y = 3 \\
x - y = 1
\end{System} \Leftrightarrow
\begin{System}
x=2\\
y=1
\end{System}
\]
\end{document}
您有什么解决办法吗?
答案1
您可以使用aligned
和\iff
来产生正确的数学间距:
代码:
\documentclass[11pt]{article}
\usepackage{amsmath}
\begin{document}
\[
\left\{\begin{aligned}
x + y &= 3 \\
x - y &= 1
\end{aligned}\right. \iff
\left\{\begin{aligned}
x &= 2\\
y &= 1
\end{aligned}\right.
\]
\end{document}
答案2
把所有东西都放到一个tabular
环境中:
\documentclass[11pt]{article}
\begin{document}
\begin{tabular}{lll}
$\left\{\begin{tabular}{l}x+y=3 \\ x-y=1 \\ \end{tabular}\right.$ & $\Leftrightarrow$ & $\left\{\begin{tabular}{l}x=2 \\ y=1 \\ \end{tabular}\right.$ \\
& & \\
& $\Leftrightarrow$ & $\left\{\begin{tabular}{l}x=2 \\ y=1 \\ \end{tabular}\right.$ \\
\end{tabular}
\end{document}
答案3
没有任何包装:
\documentclass{article}
\begin{document}
\[
\left\{\!\!\begin{array}{c}
x+y=3\\
x-y=1
\end{array}\right.
\!\!\Leftrightarrow
\left\{\!\!
\begin{array}{c}
x=2\\
y=1
\end{array}
\right.
\]
\end{document}
负空间\!\!
是为了获得与 Peter 的答案类似的间距,但对于您来说,在括号周围留出更多间距可能没问题。这是区别: