Page LayoutTOC

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

TOC

Post by omkardpd »

Hello,

I am having some issues with TOC, especially with "\listoffigures". A snapshot is also attached here. I am using the following code:

Code: Select all

\documentclass [oneside, 12pt, a4paper, onecolumn, fleqn]{book}
\pagestyle{plain}
\pagenumbering{arabic}
\usepackage[nottoc]{tocbibind}
\raggedbottom
\begin{document}
\include{ch1_abstract}

\pagenumbering{Roman}
\tableofcontents
\cleardoublepage
\addtocontents{toc}{\protect\setcounter{tocdepth}{2}}
\newpage
\listoftables
\listoffigures
\pagenumbering{arabic}

\input{ch2-introduction}
\include{ch3_Theory}

\end{document}
Why does List of Figures start with page number "1" (in Arabic style)? I want the entire TOC, list of tables and list of figures with page numbers in Roman, and the chapters of the book with Arabic page numbers. Tried many ways, but could figure out. Can I get some help?

Thank you in advance.

Regards,

Omkar
Attachments
snapshot.JPG
snapshot.JPG (11.28 KiB) Viewed 2339 times

Recommended reading 2024:

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

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

User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

TOC

Post by localghost »

Insert a \clearpage or \newpage command right after the LoF for page breaking. You may use \frontmatter, \mainmatter and \backmatter for dividing your document. In the book class these commands set the right page numbering for the three parts.


Best regards
Thorsten
omkardpd
Posts: 86
Joined: Sun Feb 24, 2008 7:23 am

Re: TOC

Post by omkardpd »

Thank you, the problem has been solved by your suggestion.

Regards,

Omkar
Post Reply