overleaf maketitle help latex

latex - maketitle - Escala una ecuación para ajustarse al ancho exacto de la página



overleaf v2 sign in (2)

El paquete graphicx proporciona el comando /resizebox{width}{height}{object} :

/documentclass{article} /usepackage{graphicx} /begin{document} /hrule %%% /makeatletter% /setlength{/@tempdima}{/the/columnwidth}% the, well columnwidth /settowidth{/@tempdimb}{(/ref{Equ:TooLong})}% the width of the "(1)" /addtolength{/@tempdima}{-/the/@tempdimb}% which cannot be used for the math /addtolength{/@tempdima}{-1em}% % There is probably some variable giving the required minimal distance % between math and label, but because I do not know it I used 1em instead. /addtolength{/@tempdima}{-1pt}% distance must be greater than "1em" /xdef/Equ@width{/the/@tempdima}% space remaining for math /begin{equation}% /resizebox{/Equ@width}{!}{$/displaystyle{% to get everything inside "big" A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+X+Y+Z}$}% /label{Equ:TooLong}% /end{equation}% /makeatother% %%% /hrule /end{document}

Tengo una ecuación que es solo un poco demasiado ancha para una línea. Realmente me gustaría evitar tener el número de ecuación en la siguiente línea. ¿Cómo lo logras? Actualmente estoy usando /small , pero esto es excesivo.

Tenga en cuenta. He intentado con scalebox y fittowidth pero recibo errores sobre la pérdida de /endgroup . ¡También he usado /! en toda su extensión. Estoy esperando una solución que me permita escalar la ecuación de una línea adecuada al ancho de la página.

Aquí hay un ejemplo (no es mi ecuación real):


/begin{equation} /resizebox{.9/hsize}{!}{$A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+X+Y+Z$} /end{equation}

o

/begin{equation} /resizebox{.8/hsize}{!}{$A+B+C+D+E+F+G+H+I+J+K+L+M+N+O+P+Q+R+S+T+U+V+W+X+Y+Z$} /end{equation}