Math & Science ⇒ How can I make a page break within an align environment?
How can I make a page break within an align environment?
Thanks
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How can I make a page break within an align environment?
you could use
Code: Select all
\allowdisplaybreaks[1]
If you would like to read more: both commands are explained in the amsmath user's guide.
Stefan
Re: align
I've noticed that whenever I used the align environment, it intents it. How would I make it so that it's in alignment with the text on the page?
Thanks again.
EDIT: Another (last) question, whenever I used enumerate and I have the align environment on the first line, the environment starts from the next line. How would I make it so that it starts from the first line (ie. the line with the number on it)?
Thanks again
- Stefan Kottwitz
- Site Admin
- Posts: 10359
- Joined: Mon Mar 10, 2008 9:44 pm
How can I make a page break within an align environment?
You probably use the fleqn option. Then you may modify the length \mathindent:Mini wrote:How would I make it so that it's in alignment with the text on the page?
Code: Select all
\setlength{\mathindent}{0pt}
It doesn't have to be the last one.Mini wrote:Another (last) question, whenever I used enumerate and I have the align environment on the first line, the environment starts from the next line. How would I make it so that it starts from the first line (ie. the line with the number on it)?

Within an enumerate item, you could use the aligned environment instead. For example, with top alignment:
Code: Select all
\item $\begin{aligned}[t] ... \end{aligned}$
Stefan