Page LayoutInsert blank Page after ToC and LoF

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
laailalalaa
Posts: 35
Joined: Thu Oct 27, 2011 5:31 pm

Insert blank Page after ToC and LoF

Post by laailalalaa »

Hello,

I'm trying to insert a blank page after \tableofcontents and \listoffigures, but the following code doesn't work (in a book, one-side printed style):

Code: Select all

\tableofcontents
\cleardoublepage
\newpage
\thispagestyle{empty}
\mbox{}

\addcontentsline{toc}{section}{List of figures}
\listoffigures
\cleardoublepage
\newpage
\thispagestyle{empty}
\mbox{}

\addcontentsline{toc}{section}{List of tables}	
\listoftables
Anyone knows how to fix (replace) this?

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

crdafisica
Posts: 10
Joined: Thu Jun 26, 2008 4:25 am

Insert blank Page after ToC and LoF

Post by crdafisica »

Hello laailalalaa,

In \documentclass{book} you need to add the commands \newpage and \thispagestyle{empty} after the \tableofcontents in order to obtain a new blank page.

Code: Select all

\documentclass{book}

\begin{document}

\tableofcontents

\newpage
\thispagestyle{empty}

\listoffigures
\addcontentsline{toc}{section}{List of figures}

\newpage
\thispagestyle{empty}

\listoftables
\addcontentsline{toc}{section}{List of tables}

\newpage
\thispagestyle{empty}

\section{Test}

\begin{figure}[htbp]
	\centering
		FIGURE
	\caption{figure caption}
	\label{label}
\end{figure}

\begin{table}[htbp]
	\centering
		TABLE
	\caption{table caption}
	\label{tab:caption}
\end{table}

\end{document}
If the article style is used the newpage command followed by \listoffigures will create the list of figures in the previous page. You need to add an extra page so the list of figure will be placed at that.

Code: Select all

\tableofcontents

\newpage
\thispagestyle{empty}
\hspace{1cm}
\newpage

\listoffigures
Regards
Post Reply