i have a Latex document with some very long equatations inside an align* element. They overflow the page width. My question is: How can I tell Latex to automatically insert linebreaks when the lines reach the end of the page? Or do I have to manually add the linebreaks?
My code is like this:
\begin{align*}
a_1 = someverylongequatationsheeesh + 435734 +345345345345 +345346456456 +456456456456
...
\end{align*}
I tried inserting \allowbreak about everywhere, but it didn't work. Also putting the equatations inside a split element didn't work.