方程式間の間隔を定義できません

方程式間の間隔を定義できません

私の MWE は次のとおりです:

\documentclass{article}    
\usepackage{amsmath}

\begin{document}


This example solves a simple equation:   

\begin{equation}
x + 2 = 6 \nonumber
\end{equation}    

\begin{equation}
\Leftrightarrow \nonumber
\end{equation}    

\begin{equation}
x = 4
\end{equation}


It would nice if the spacing between the equations was reduced!

\end{document}

それは次のようになります:

ここに画像の説明を入力してください

等価記号の前後のスペースを減らしたいのですが、次の方法を試しましたオプションしかし、どれも機能していないようです。助けてください!

答え1

パッケージを使用しているのでamsmath、おそらくこれにはグループ化環境の 1 つを使用する必要があります。

この場合、連続する数式を、特別な配置なしで中央に表示する必要があります。gather環境はまさにそれを実行します。

\begin{gather}
x + 2 = 6 \notag\\
\Leftrightarrow \notag\\
x = 4
\end{gather}

結果

関連情報