Hello readers
I'm writing a document and I would like to use openright as an option for a report class. Now when I typset the document all chapter's begin nicely on odd pages. But here's my problem, I would like to have the inserted blank pages (if a chapter ends on an odd page, the next even one is blank) formatted with \pagestyle{empty}, I was not able to achieve this so far. I have the \pagestyle{plain} reformatted with fancyhdr and all other's are \pagestyle{fancy}. The insertet blank page is also formatted with \pagestyle{fancy} and that does not look so neat. How can I tell LaTeX to use \pagestyle{empty} on these pages?
thanks
Fab
my preamble looks like this:
\documentclass[11pt,a4paper,twoside,openright,draft]{report}
%Macros
\usepackage[utf8x]{inputenc}
\usepackage[]{ngerman}
\usepackage[ngerman]{babel}
%\usepackage[T1]{fontenc}
\usepackage[]{a4}
\usepackage[]{geometry}
\usepackage[]{amsmath}
\usepackage[]{calrsfs}
\usepackage[]{bm}
\usepackage[]{latexsym}
\usepackage[]{caption}
\usepackage[]{cite}
\usepackage[]{fancyhdr}
\usepackage[section]{placeins}
\usepackage[pdftex]{graphicx}
\usepackage[]{color}
%\usepackage[]{psfrag}
\usepackage[]{afterpage}
%\usepackage[]{float}
%\usepackage[sf]{titlesec}
%\usepackage[scaled=0.93]{helvet}
%\usepackage[]{mathpazo}
%\usepackage[]{layouts}
%\newcommand\showpage{%
%\currentpage\pagedesign}
%Text layout
\setlength{\unitlength}{1cm}
\setlength{\topmargin}{-1cm}
\setlength{\headheight}{1cm}
%\setlength{\headsep}{1.4cm}
\setlength{\oddsidemargin}{0cm}
\setlength{\evensidemargin}{0cm}
%\setlength{\footskip}{1.2cm}
\setlength{\marginparwidth}{1.6cm}
\setlength{\textwidth}{16cm}
\setlength{\textheight}{23.5cm}
\setlength{\parindent}{0pt}
\setlength{\parskip}{1.3ex plus0.3ex minus0.3ex}
%Header/Footer
\pagestyle{fancy}
\fancyhf{}
\fancyhf[HEL,HOR]{\small Hochschule Luzern}
\fancyhf[HER]{\small \nouppercase{\leftmark}}
\fancyhf[HOL]{\small \nouppercase{\rightmark}}
\fancyhf[FEL,FOR]{\thepage}
\fancyhf[FER,FOL]{\small PREN 1}
\renewcommand{\headrulewidth}{0.4pt}
\renewcommand{\footrulewidth}{0pt}
%\fancypagestyle{plain}{%
%\fancyhf{}%
%\fancyhf[FEL,FOR]{\thepage}
%\fancyhf[FER,FOL]{\small PREN 1}
%\renewcommand{\headrulewidth}{0pt}
%\renewcommand{\footrulewidth}{0pt}}
%Custom changes
\addto{\captionsngerman}{\renewcommand{\abstractname}{Abstract}}
%\addto{\captionsngerman}{\renewcommand{\chaptername}{Kapitel}}
\newcommand{\lap}[1]{\mathcal{L}\left\{#1\right\}}
\newcommand{\ilap}[1]{\mathcal{L}^{-1}\left\{#1\right\}}
\newcommand{\four}[1]{\mathcal{F}\left\{#1\right\}}
\newcommand{\ifour}[1]{\mathcal{F}^{-1}\left\{#1\right\}}
\newcommand{\ztrans}[1]{\mathcal{Z}\left\{#1\right\}}
\newcommand{\iztrans}[1]{\mathcal{Z}^{-1}\left\{#1\right\}}
\newcommand{\mrm}[1]{\mathrm{#1}}
\newcommand{\odiff}{\mathrm{d}}
\newcommand{\pdiff}{\partial}
\newcommand{\iu}{\operatorname{i}}
\newcommand{\ju}{\operatorname{j}}
General ⇒ openright as option in \documentclass[]{report}
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10322
- Joined: Mon Mar 10, 2008 9:44 pm
openright as option in \documentclass[]{report}
Hi Fab,
you will find a solution in the fancyhdr documentation in 15 Those blank pages:
or redefine \cleardoublepage like described there.
Stefan
you will find a solution in the fancyhdr documentation in 15 Those blank pages:
Code: Select all
\clearpage{\pagestyle{empty}\cleardoublepage}
Stefan
LaTeX.org admin
openright as option in \documentclass[]{report}
Thank you, much appreciated!Stefan_K wrote:Hi Fab,
you will find a solution in the fancyhdr documentation in 15 Those blank pages:or redefine \cleardoublepage like described there.Code: Select all
\clearpage{\pagestyle{empty}\cleardoublepage}
Stefan