When I test your example, the page number is correct. Can you check exactly this example? If the problem persists, add the output pdf as attachment.
Chapters start as right pages, you used \chapter*, so empty pages are inserted to ensure that. If you don't want it, use the class option openany.
Stefan
Page Layout ⇒ Wrong page title in Header
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Wrong page title in Header
LaTeX.org admin
NEW: TikZ book now 40% off at Amazon.com for a short time.

Wrong page title in Header
Hi again,
I partially found a solution double checking the memoir package, but still I have the problem of the blank pages among 'List of Abbreviations', 'Exec summary' and actual content. Is this because of the book class?
Here a MWE of the current code.
Many thanks again
I partially found a solution double checking the memoir package, but still I have the problem of the blank pages among 'List of Abbreviations', 'Exec summary' and actual content. Is this because of the book class?
Here a MWE of the current code.
Many thanks again
Code: Select all
\documentclass[a4paper, twoside,11pt]{memoir}%
\usepackage{hyperref}
%\hypersetup{ => omitted options
\begin{document}
\tableofcontents
\newpage
\listoffigures
\listoftables
\chapter*{List of Abbreviations}
\addcontentsline{toc}{chapter}{List of Abbreviations}
\renewcommand{\abstractname}{\chapter*{Executive Summary}}
\begin{abstract}
\addcontentsline{toc}{chapter}{Executive Summary}
here's my exec summary
\end{abstract}
%\cleardoublepage
\mainmatter
\chapter{}
\end{document}
Re: Wrong page title in Header
Hello Stefan_K,
thanks for your quick response.
Honestly, I did not refresh the browser, so I saw you reply after submission of last post.
I used 'openany' and it did the trick, now everything is in place.
However, if I enclose the Exec Summary into the \begin{Abstract} ... \end{Abstract}, memoir has dedicated fonts. I fond more useful to remove the above and simply have \chapter*{}.
Would you suggest any code more elegant to do the same job?
Many thanks again for the support.
All the best.
thanks for your quick response.
Honestly, I did not refresh the browser, so I saw you reply after submission of last post.
I used 'openany' and it did the trick, now everything is in place.
However, if I enclose the Exec Summary into the \begin{Abstract} ... \end{Abstract}, memoir has dedicated fonts. I fond more useful to remove the above and simply have \chapter*{}.
Would you suggest any code more elegant to do the same job?
Many thanks again for the support.
All the best.