tyltus wrote:...So can I change those values for a single page only?
Would it even be possible to create a minipage which has a smaller left margin and a wider textwidth than the rest of the page?
If the answer to any of those questions is yes, then: how?
The asnwer is, indeed yes. You can use, for example the adjustwidth environment provided by the changepage package to change the page layout for your equation (I don't like very much this option from a typographical standpoint; I would suggest its use if and only if there's no other choice). A little example, with your code:
In my opinion the problem is not really the large size of the equations, but that they are not sufficiently organized and well written. The following code shows how you can split every long relation in two or more lines. There is even room for the equation number:
The above code reproduces most of the sample equation you provided. You should complete it. Please note the following questions:
Use the aligned environment, for example, to divide long expressions. In each secondary level, indent the second and subsequent lines. I've done that with an own defined macro called \tab that you can adjust to fit your needs.
The size of delimiters is important to help reading expressions.
If possible, avoid fractions like \frac{1}{2} inside complex expressions. For example, instead of, say, \frac{1}{2}\epsilon, you can simply write \epsilon/2, or, at least, \tfrac{1}{2}\epsilon.
Binary operators should be at the beginning of lines, not at the end.
Don't include spaces in the macro definition. Add them when really needed with macros like \, , \; , \: etc.
Don't use \nonumber to suppress numbering inside an amsmath environment. Use \notag instead.
The combination of equation and split environments provides a unique centered equation number. If you want such a number at the bottom line, use the tbtags option when loading amsmath. Instead, you can also replace equation + split by a single align environment, adding \notag in each not numbered line.
The \allowdisplaybreaks command instructs LaTeX to allow page breaks inside displayed equations. Useful if a very long equation needs to expand through more than one page.
Sorry for the late answer, I was occupied with some more calculations rather than the report the past few months...
gmedina wrote:
The asnwer is, indeed yes. You can use, for example the adjustwidth environment provided by the changepage package to change the page layout for your equation (I don't like very much this option from a typographical standpoint; I would suggest its use if and only if there's no other choice).
Thank you very much, this is indeed exactly what I was looking for! I totally agree that this is something that you should avoid whenever possible but its good to know that there is a possibility.
Juanjo wrote:In my opinion the problem is not really the large size of the equations, but that they are not sufficiently organized and well written. Please note the following questions:
Use the aligned environment, for example, to divide long expressions. In each secondary level, indent the second and subsequent lines. I've done that with an own defined macro called \tab that you can adjust to fit your needs.
The size of delimiters is important to help reading expressions.
If possible, avoid fractions like \frac{1}{2} inside complex expressions. For example, instead of, say, \frac{1}{2}\epsilon, you can simply write \epsilon/2, or, at least, \tfrac{1}{2}\epsilon.
Binary operators should be at the beginning of lines, not at the end.
Don't include spaces in the macro definition. Add them when really needed with macros like \, , \; , \: etc.
Don't use \nonumber to suppress numbering inside an amsmath environment. Use \notag instead.
The combination of equation and split environments provides a unique centered equation number. If you want such a number at the bottom line, use the tbtags option when loading amsmath. Instead, you can also replace equation + split by a single align environment, adding \notag in each not numbered line.
The \allowdisplaybreaks command instructs LaTeX to allow page breaks inside displayed equations. Useful if a very long equation needs to expand through more than one page.
This list also proved to be very helpful! Indeed, by now I decided not to include the above mentioned equation in the report, but this still helped me keeping a better structure and I will gladly use it in my upcomming reports.
A big thank you again to everyone who tried to help!
Best regards
Martin