Tengo el siguiente 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 a esto:
Me gustaría reducir el espacio antes y después del signo de equivalencia. Probé estosopcionespero ninguno de ellos parece funcionar. ¡Ayuda!
Respuesta1
Dado que está utilizando el amsmath
paquete, probablemente debería utilizar uno de sus entornos de agrupación para esto.
En este caso, desea mostrar ecuaciones consecutivas, centradas sin alineación especial. El gather
medio ambiente hace precisamente eso:
\begin{gather}
x + 2 = 6 \notag\\
\Leftrightarrow \notag\\
x = 4
\end{gather}