
¿Es posible obligar a Latex a mantener el margen izquierdo para ecuaciones amplias?
Tengo un documento con fleqn
la opción habilitada para alinear a la izquierda todas las ecuaciones. Si la ecuación es más larga que el espacio disponible, LaTeX mueve la ecuación hacia la izquierda y, si esto no produce suficiente espacio, mueve la etiqueta de la ecuación a la siguiente línea. Me gustaría obligar a LaTeX a mantener siempre el margen izquierdo incluso si las ecuaciones son más largas que el espacio disponible. Me gustaría hacer cumplir esto en todo el documento, incluso a costa de violar el margen derecho. ¿Hay alguna manera de lograr esto?
MWE:
\documentclass{article}
\usepackage[fleqn]{amsmath}
\begin{document}
What I have now:
\begin{equation}
f(x) = x^2
\end{equation}
\begin{equation}
f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10} + x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16}
\end{equation}
\begin{equation}
f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10} + x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16} + x^{17}
\end{equation}
\begin{equation}
f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10} + x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16} + x^{17} + x^{18}
\end{equation}
What I want:
\begin{equation}
f(x) = x^2
\end{equation}
\begin{equation}
\qquad\,\, f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10} + x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16}
\end{equation}
\begin{equation}
\qquad\,\,\, f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10} + x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16} + x^{17}
\end{equation}
\begin{equation}
\qquad\,\,\,f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10} + x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16} + x^{17} + x^{18}
\end{equation}
\end{document}
Respuesta1
Rompería los plazos largos. De todos modos, eres el juez final.
Usar gather
.
\documentclass{article}
\usepackage[fleqn]{amsmath}
\begin{document}
\begin{equation}
0=0
\end{equation}
Now let's see the result
\begin{gather}
f(x) = x^2
\\
f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10}
+ x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16}
\\
f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10}
+ x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16} + x^{17}
\end{gather}
It also works for a single equation
\begin{gather}
f(x) = x^2 + x^3 + x^4 + x^5 + x^6 + x^7 + x^8 + x^9 + x^{10}
+ x^{11} + x^{12} + x^{13} + x^{14} + x^{15} + x^{16} + x^{17} + x^{18}
\end{gather}
\end{document}