\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{equation}
1 + 1 = 2
\end{equation}
\begin{align}
7 + 5 &= 12\\
12 &= 11 + 1
\end{align}
\end{document}
最初の方程式と 2 番目の方程式の間のスキップを、2 番目と 3 番目の方程式の間のスキップと同じになるように調整できますか?
答え1
非正統的な解決法として、align
環境をgather
環境内に挿入する方法があります。特に相互参照の場合、副作用があるかどうかはわかりません。正統的な方法は、整列した方程式を …aligned
環境内にグループ化することですが、両方に 1 つの番号が付きます。投稿したコードでは、結果は特に美観に欠けますが、実際の方程式は多少異なると思います。
\documentclass{article}
\usepackage{amsmath}
\begin{document}
\begin{gather}
1 + 1 = 2\\
\begin{align}
7 + 5 &= 12\\
12 &= 11 + 1
\end{align}
\end{gather}
\begin{gather}
1 + 1 = 2\\
\begin{aligned}
7 + 5 &= 12\\
12 &= 11 + 1
\end{aligned}
\end{gather}
\end{document}