How do I tell LaTeX, "if you need to put a page break, this is a good place to put it" ?
|
Since you are asking for a LaTeX solution: Leslie Lamport explains all about it in the manual. |
|||||||||||
|
|
Look at Chapter 15 of the TeXbook for all the details, but basically you should add negative penalty where those breaks are desired. For example, the TeXbook says that if you say Plain TeX (and I believe LaTeX too) has macros to hint where breaks should occur with increasing likelyhood: Also worth mentioning is There's also So you have many options, and I recommend reading Chapter 15 for much more information with better explanations. |
|||||||||||||
|

:)Does this link help? It might be a possible duplicate of your question. tex.stackexchange.com/questions/736/pagebreak-vs-newpage. – hpesoj626 Dec 8 '12 at 4:31\pagebreakseems to kind of do what I want, but I'm not sure yet... it's not that I want to put a page break anywhere per se, but if LaTeX wants to put a page break somewhere, I want it to consider my choice first, instead of (say) breaking two lines later. But if it doesn't need a page break at all then I don't want to make the system go out of its way to put a page break anywhere. – Mehrdad Dec 8 '12 at 4:37\pagebreak[3]to try to give LaTeX the message you are suggesting, but since I don't think I've ever seen this actually work for me, I can't recommend it as a solution. The only times I've actually seen LaTeX use a\linebreakor\pagebreakcommand with an optional argument of 3 or less were when the command fell at a place where a page/line break would otherwise be illegal, but was necessary to avoid an overfull or underfull box. – Charles Staats Dec 8 '12 at 4:53