salve ho unequazione piuttosto lunga che va oltre il margine destro del foglio e fa si che il numero dell’equazione che si trova a sinistra venga messo sotto la formula…
c’è un modo elegante per ovviare al problema oppure ridurre le dimensioni di quella formula?
ecco il sorgente
`\documentclass[10pt,a4paper,italian]{article}
\begin{document}
\begin{gather}
120\cdot 3.96\cdot 40+W\cdot 2771.4=P\cdot \biggl [{(0.89\cdot120)\cdot W\over P}\cdot 4.196+{0.11\cdot 120\over P}\cdot 2.161\biggr ]\cdot 100
\end{gather}
\end{document}`
ho utilizzato l’ambiente gather perche dovevo continuare a svolgere questa equazione…
grazie mille
`\usepackage{mathtools}
…
\begin{gather}
\begin{multlined}
120\cdot 3.96\cdot 40+W\cdot 2771.4={}\\
P\cdot \biggl [\frac{(0.89\cdot120)\cdot W}{P}\cdot 4.196+
\frac{0.11\cdot 120}{P}\cdot 2.161\biggr ]\cdot 100
\end{multlined}
\end{gather}`
Non usare \over, ma \frac.
Ciao
Enrico