I have a random blank page before a new appendix chapter in my document and have tried everything online to no avail.
Here is my class setup:
\documentclass[11pt,openright,a4paper,draft]{report}
and here is where the blank page is appearing:
\section{Adding an Item to a Room}
\begin{enumerate}
\item
Access the Admin Panel.
\item
Click on \textit{Room Management}.
\item
Select the specified entry from the list.
\item
Click \textit{Add Item to Room}.
\item
Select the \textit{Item} from the list.
\item
Click \textit{Link}.
\end{enumerate}
%%% BLANK PAGE IS HERE %%%
\chapter{Raw Results Output}\label{app:Raw Results}
\section{Testing}
\subsection{Application Monitoring}\label{sec: Load Testing Evidence}
\begin{minipage}{\linewidth}
\begin{center}
\label{fig:Application Monitoring Evidence}
\includegraphics[width=\textwidth,height=\textheight,keepaspectratio]{website-stress.jpg}
\captionsetup{justification=centering}
\captionof{figure}{Evidence of monitoring the web-application.}
\end{center}
\end{minipage}
Any help is greatly appreciated.
openright, which means a\chapterwill be on the right (or recto, typically odd numbered) side of a two-side layout. The assumption is that your previous section ends on an odd page, implying that TeX has to clear past an even page to get to an odd page which willopenon theright. Could you clarify this information, since it's not possible to identify that from your code snippet. – Werner May 01 '17 at 19:07geometryand specifying thetwosideoption? – Werner May 01 '17 at 19:23\textwidthso you should reduce the height hereheight=\textheight– David Carlisle May 01 '17 at 19:49