Assignments, Laboratory books and reportsunnecessary blank page after a page in a chapter

University homework, exams and laboratory work
Post Reply
putul49
Posts: 2
Joined: Wed Dec 25, 2019 7:55 pm

unnecessary blank page after a page in a chapter

Post by putul49 »

I am facing a problem during my project work.. unnecessary blank page executes after compilation,..how can i solve this problem?? :roll: :?:
Attachments
AppendixA.tex
(296 Bytes) Downloaded 570 times
du_col_logo.jpg
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

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics
kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

unnecessary blank page after a page in a chapter

Post by kaiserkarl13 »

Change this:

Code: Select all

\documentclass[a4paper,oneside]{Thesis}
to this:

Code: Select all

\documentclass[a4paper,oneside,openany]{Thesis}
putul49
Posts: 2
Joined: Wed Dec 25, 2019 7:55 pm

unnecessary blank page after a page in a chapter

Post by putul49 »

it didn’t work
kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

unnecessary blank page after a page in a chapter

Post by kaiserkarl13 »

OK, next time post a Infominimal 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.
Post Reply