GeneralBlank pages after each chapter

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ralfmeermeier
Posts: 8
Joined: Mon Jul 21, 2008 7:23 pm

Blank pages after each chapter

Post by ralfmeermeier »

Hallo,

my document has the follwing structure:

Code: Select all

\documentclass[a4paper,openany]{book}
\usepackage{fullpage}
\addtolength{\headsep}{0.5in}
\usepackage[T1]{fontenc}
\usepackage[ngerman]{babel}
\usepackage[latin1]{inputenc}
\usepackage{amsmath}
\usepackage{listings}
\usepackage{graphicx}  \renewcommand{\figurename}{Abb.} 
\usepackage{url}
\usepackage{here}
\usepackage{setspace}
\usepackage{tocloft}
\usepackage{dingbat} 
\usepackage{mathptmx}
\usepackage{rotating}
\usepackage{Textcomp}
\usepackage{Marvosym}
\usepackage{Chemarrow}
\usepackage{txfonts}
\usepackage{mathptmx, courier, pifont} 
\usepackage{amsfonts}
\usepackage{bbding}
\usepackage{MnSymbol}
\usepackage{perpage}
\usepackage[hang]{footmisc}
\usepackage[usenames]{color}
\usepackage[pdftex,
bookmarks=true,
bookmarksnumbered=true,
bookmarksopen=false,
colorlinks=true,
citecolor = blue,
urlcolor = blue,
pdftitle={zidan08 Informationsobjekte und deren Speicherung in digitalen Bibliotheken},
linkcolor=black]{hyperref}
\setcounter{tocdepth}{3}
\renewcommand{\tablename}{Tab.} 
\setcounter{secnumdepth}{3}
\usepackage{fancyhdr}
 
\newcommand{\marginal}[1]{\leavevmode\marginpar{\tiny\raggedright#1\par}}
\MakePerPage[1]{footnote}

\begin{document} 
.....
\newpage
\phantomsection
\addcontentsline{toc}{chapter}{Tabellenverzeichnis}
\listoftables  
\addcontentsline{toc}{chapter}{Abbildungsverzeichnis}
\listoffigures
\bibliographystyle{ieeetr}
\addcontentsline{toc}{chapter}{Literaturverzeichnis}
\bibliography{bibliography}
\clearpage
\end{document}
I need to have thanking page after the table of contents, besides that I have to insert a blank page after each chapter (but not after the literatur (possible?)), I appreciate your help in advance

Ralf Meermeier

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
Stefan Kottwitz
Site Admin
Posts: 10360
Joined: Mon Mar 10, 2008 9:44 pm

Blank pages after each chapter

Post by Stefan Kottwitz »

Hi Ralf,

you can create the thanking page like a normal page. What should be different?

Concerning the insertion of empty pages you could just write

Code: Select all

\newpage\mbox{}\newpage
or if you also don't want header, footer or pagenumber:

Code: Select all

\newpage
\thispagestyle{empty}\mbox{}
\newpage
If it perhaps was required to open new chapters on odd-numbered pages one should do it differently, but I assume it doesn't matter for you where chapters start because you've set the openany option.

Stefan
LaTeX.org admin
ralfmeermeier
Posts: 8
Joined: Mon Jul 21, 2008 7:23 pm

Re: Blank pages after each chapter

Post by ralfmeermeier »

Thank you very much
Post Reply