I have this issue with a LaTeX document: I want to have page numbers on every page of the Table of Content. In my case the ToC is displayed across two pages because of many chapters in the text, but the first page of the ToC does not show a page number (the second page does). I generate the ToC like this:
\newpage
\pagestyle{plain}
\setcounter{page}{5}
\tableofcontents
\pagestyle{plain}? – phimuemue Feb 18 '12 at 14:43memoir? It is customary for the first page of the ToC to be set similarly to what a regular\chapter*should look like. And these have their first pages set toplainusing\thispagestyle. However, subsequent page should follow whatever\pagestyleyou set before it. – Werner Feb 18 '12 at 16:12