When I start my chapter by including a figure, the preceeding page automatically becomes blank. I'm using the report document class. I have a main .tex file from which I include other .tex files containing the chapters.
For example when I use
\chapter{Chapter 5}
\fbox{ \includegraphics[page=1,scale=1]{mypdf.pdf}}
It will automatically generate a blank page before chapter 5. However if I use
\chapter{Chapter 5}
Just some text ...
It does not include a blank page.
How can I remove the blank page in the first case?
Chapter 1. Somethingis printed. There is no enough space there. Hence latex moves it to the next page. Try scaling the picture down:\fbox{ \includegraphics[page=1,scale=.7]{mypdf.pdf}}– Harish Kumar Dec 30 '12 at 13:33figureenvironment, which is invented exactly to avoid problems like yours. You use the environment as follows:\begin{figure}\includegraphics{...}\end{figure}. That way LaTeX will find a nice position for your figure and won't leave white space at the start of your chapter. – Marc van Dongen Dec 30 '12 at 14:04