Generalpage break and eqnarray

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

page break and eqnarray

Post by omkardpd »

Hi,

I am writing a set of equations using "eqnarray". The set of equations is so large that it is leaving half of the page blank and moving the entire set on new page. This looks weird. Is there a way to have system understand the remaining space on a page and print a portion of equations on it and rest on the next page? Or do I have to do it myself?

This issue is also leading to a problem with footnote. Footnote is getting printed on the middle of the page, and bottom portion of the page is remaining empty.

See the picture attached. Any suggestions please.

Thank you,

Omkar
Attachments
footnote.JPG
footnote.JPG (46.65 KiB) Viewed 8665 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

page break and eqnarray

Post by Stefan Kottwitz »

Hi Omkar,

don't use the eqnarray environment. It's old and not recommended, for instance the spacing around relation symbols is different to that of single equations. Use the align environment of amsmath instead. See amsmath user's guide.

You can break amsmath environments, there are commands for that: \allowdisplaybreaks and \displaybreak, see the user's guide 3.9 Vertical spacing and page breaks in multiline displays.

Concerning the footnote issue the easiest way should be

Code: Select all

\usepackage[bottom]{footmisc}
Perhaps see footmisc documentation for further features.

Stefan
LaTeX.org admin
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

page break and eqnarray

Post by localghost »

omkardpd wrote:[...] This issue is also leading to a problem with footnote. Footnote is getting printed on the middle of the page, and bottom portion of the page is remaining empty. [...]
Perhaps somewhere in your code there is a \raggedbottom command. Deleting that should get things work.


Best regards
Thorsten
Post Reply