Page LayoutTOC LOF sequential page numbering

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
smarm
Posts: 3
Joined: Wed May 05, 2010 6:56 pm

TOC LOF sequential page numbering

Post by smarm »

Hi All.

I have a problem that seem to fall between the seams of all of the problems that I am finding answers to. Depositing dissertation in a few days with very specific guidelines, so I'm not looking for elegance, just a working answer.

I need TOCs, LOFs, Acknowledgments, etc all with sequential Roman numbering on each page (preferably on the lower-center) before the Arabic enumeration of the text begins. What I am getting with the following is each section beginning with its proper lower-case Roman numeral, then nothing for the remainder of its pages, until the next section begins. That is, the 3-page TOC has a (i) at the bottom-center, then is blank for the next 2 pages, then the 3-page LOF has a (iv) at the bottom-center, and then is blank as well for its next 2 pages, until the next section begins, &c.

Code: Select all

% TOC

\clearpage
\setcounter{page}{1}
\pagenumbering{roman}
\tableofcontents{}

% Figgers

\clearpage
\listoffigures{}

% Acknowledgments

\chapter*{Acknowledgments}
  \pagestyle{plain}

% Last words
\newpage
  \begin{verse}
     \ldots
  \end{verse}

%Begin thesis

\newpage
\setcounter{page}{1}
\pagenumbering{arabic}
Any help is greatly appreciated. Thanks very much.

smarm.

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

meho_r
Posts: 823
Joined: Tue Aug 07, 2007 5:28 pm

TOC LOF sequential page numbering

Post by meho_r »

Make sure that you haven't put \pagestyle{empty} anywhere before that code for changing page numbering. As you can see from the following example, it should work fine with \pagestyle{plain}:

Code: Select all

\documentclass{report}

\usepackage{blindtext}
\usepackage[english]{babel}

\begin{document}

\pagestyle{plain}

\clearpage
\setcounter{page}{1}
\pagenumbering{roman}

\tableofcontents

\clearpage
\setcounter{page}{1}
\pagenumbering{arabic}

\blinddocument
\blinddocument
\blinddocument
\blinddocument
\blinddocument

\end{document}
smarm
Posts: 3
Joined: Wed May 05, 2010 6:56 pm

Re: TOC LOF sequential page numbering

Post by smarm »

worked like a charm. thanks.
Post Reply