hello, this is my first post, I'm using LaTex since one year.
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)
Document Classes ⇒ Problem using document class memoir
Problem using document class memoir
- 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.
Re: Problem using document class memoir
Take out the \newpage command from line 218 of perfilNAVAL2.tex.
(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.
(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
thanks for you answer, but delete the \newpage command of 218 line don't solves the problem.
What do I do?
What do I do?
Re: Problem using document class memoir
It fixed it for me. Are you sure you removed the right one?