[Tex/LaTex] Make blank page after Table of Contents empty/plain

double-sidedheader-footertable of contents

I am preparing a document using the twoside class option.
The end of the Table of Contents falls such that an blank page is inserted so that the following section (List of Figures FWIW) falls on an odd page.
However, the blank page has headers (using fancyhdr), which I believe will look odd with no content, on a verso page, with the start of the List of Figures on the recto.

How can I make this page empty, or plain (i.e. with only a page number)?

I have tried using \thispagestyle{plain}, but it does not affect pages with the TOC.

Best Answer

Usually

\tableofcontents
\clearpage
\begingroup
  \pagestyle{empty}%
  \cleardoublepage
\endgroup
\listoffigures

does the trick (the manual version). Some classes have options for the page style of such pages:

  • Class memoir uses page style cleared. By default, it is defined using page style empty:

    \aliaspagestyle{cleared}{empty}
    

    But it can be changed to plain, fancyplain or whatever, e.g.:

    \aliaspagestyle{cleared}{plain}
    
  • KOMAScript has an option cleardoublepage, which gets the page style as argument, e.g.:

    cleardoublepage=plain
    
  • With other classes, \cleardoublepage can be redefined:

    \newcommand*{\OriginalClearDoublePage}{}
    \let\OriginalClearDoublePage\cleardoublepage
    \renewcommand*{\cleardoublepage}{%
      \clearpage
      \begingroup
        \pagestyle{plain}%
        \OriginalClearDoublePage
      \endgroup
    }
    
Related Question