Document Classes ⇒ Problem using document class memoir
Problem using document class memoir
I have a problem now.
When I compile the document this makes a skip of one page, that is, the page is white.(look page 33 )
How can I eliminate this white page?
(I compile the naval.tex the other files are includes)
- Attachments
-
- Naval.rar
- File with problem
- (228.47 KiB) Downloaded 156 times
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Re: Problem using document class memoir
(The table on the preceding page already takes up the whole page, so the \newpage command is being interpreted on the top of page 33, resulting in a blank page.)
Or if you want to keep a command like that in there in case of changes, you can change \newpage to \clearpage, which only resuts in a new page if there's something on the current one already.
Re: Problem using document class memoir
What do I do?