Assignments, Laboratory books and reports ⇒ unnecessary blank page after a page in a chapter
unnecessary blank page after a page in a chapter
I am facing a problem during my project work.. unnecessary blank page executes after compilation,..how can i solve this problem??
- Attachments
-
- AppendixA.tex
- (296 Bytes) Downloaded 570 times
-
- du_col_logo.jpg (12.5 KiB) Viewed 18726 times
-
- main_tmp.tex
- (8.34 KiB) Downloaded 512 times
-
- Chapter3.tex
- (15.42 KiB) Downloaded 576 times
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
unnecessary blank page after a page in a chapter
Change this:
to this:
Code: Select all
\documentclass[a4paper,oneside]{Thesis}
Code: Select all
\documentclass[a4paper,oneside,openany]{Thesis}
unnecessary blank page after a page in a chapter
it didn’t work
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
unnecessary blank page after a page in a chapter
OK, next time post a minimal working example and be more specific about what you mean.
I think you're referring to the fact that there is a blank page between section 1.7 and section 1.8 (the flowchart). This happens because your flowchart is too tall to fit on a page: TeX says, "this doesn't fit here" and skips to the next page. It then tries to typeset header plus image, and gets the "this doesn't fit" signal again, so it adds a page and then gets it again. It that point it gives up and gives you the overflowing-the-page output.
I'm saying this tentatively, because I don't have a copy of your document class and therefore had to try to reproduce it it with "book" by adding packages and commenting out lines.
I think you're referring to the fact that there is a blank page between section 1.7 and section 1.8 (the flowchart). This happens because your flowchart is too tall to fit on a page: TeX says, "this doesn't fit here" and skips to the next page. It then tries to typeset header plus image, and gets the "this doesn't fit" signal again, so it adds a page and then gets it again. It that point it gives up and gives you the overflowing-the-page output.
I'm saying this tentatively, because I don't have a copy of your document class and therefore had to try to reproduce it it with "book" by adding packages and commenting out lines.