Tenho o seguinte 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}
Que se parece com isto:
Gostaria de reduzir o espaçamento antes e depois do sinal de equivalência. Eu tentei issoopçõesmas nenhum deles parece funcionar. Ajuda!
Responder1
Como você está usando o amsmath
pacote, provavelmente deveria usar um de seus ambientes de agrupamento para isso.
Neste caso, você deseja exibir equações consecutivas, centralizadas e sem nenhum alinhamento especial. O gather
ambiente faz exatamente isso:
\begin{gather}
x + 2 = 6 \notag\\
\Leftrightarrow \notag\\
x = 4
\end{gather}