どのように配置すればいいですか?中央揃えdisplaymath 環境でテキストの 2 つの領域を分離する垂直線ですか? 必要な効果は以下に記載されています。 ありがとうございます!
\[
3x + 2 = 6 | x + 5 = 7
-2 = -2 | -5 = -5
3x = 4 | x = 2
x = 4/3 |
\]
答え1
MWE は次のとおりです。
\documentclass[letterpaper]{article}
\usepackage{amsmath}
\begin{document}
\begin{tabular}{l|l}
$\begin{aligned}
3x + 2 &= 6\\
-2 &= -2 \\
3x &= 4 \\
x &= 4/3 \\
\end{aligned}$ &
$\begin{aligned}
3x + 2 &= 6\\
-2 &= -2 \\
3x &= 4 \\
x &= 4/3 \\
\end{aligned}$
\end{tabular}
\end{document}
上記の例では、表形式の環境を実装しています。配列または複数列のバージョンを使用して同じ結果を作成することもできます。
答え2
表形式なし:
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather*}
\begin{aligned}
3x + 2 &= 6\\
-2 &= -2 \\
3x &= 4 \\
x &= 4/3 \\
\end{aligned} \quad \vrule \quad
\begin{aligned}
3x + 2 &= 6\\
-2 &= -2 \\
3x &= 4 \\
x &= 4/3 \\
\end{aligned}
\end{gather*}
\end{document}
これも有効です
\[
\begin{aligned}
3x + 2 &= 6\\
-2 &= -2 \\
3x &= 4 \\
x &= 4/3 \\
\end{aligned} \quad \vrule \quad
\begin{aligned}
3x + 2 &= 6\\
-2 &= -2 \\
3x &= 4 \\
x &= 4/3 \\
\end{aligned}
\]