방정식 사이의 간격을 정의할 수 없습니다.

방정식 사이의 간격을 정의할 수 없습니다.

다음과 같은 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이를 위해 그룹화 환경 중 하나를 사용해야 할 것입니다.

이 경우 특별한 정렬 없이 중앙에 연속 방정식을 표시하려고 합니다. 환경 gather은 다음과 같은 일을 합니다.

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

결과

관련 정보