Hello
My document class is book. I want to change the pagination style.
1. I want the page numbering to be arabic for the table of contents plus I want this page number to be on the middle top of the page.
2. I have set the tocdepth to 3. The subsections are displayed on the TOC but they are not numbered on neither the TOC nor on the body. any idea?
Page Layout ⇒ Pagination + subsubsection on table of contents
Pagination + subsubsection on table of contents
Last edited by maranatha on Thu May 05, 2011 1:48 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: Pagination + subsubsection on table of contents
I have actually solved the the second equation about subsubsection numbering by:
\setcounter{secnumdepth}{4}
\setcounter{secnumdepth}{4}
Pagination + subsubsection on table of contents
I have got a solution for the roman numbering of preface pages in my document. I just uncomment the command and put command where I want the arabic numbering to start as below and it works well.
Code: Select all
\frontmatter
Code: Select all
\mainmatter
Code: Select all
\documentclass[11pt,a4paper]{book}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\renewcommand*{\contentsname}{TABLE OF CONTENTS}
\renewcommand*{\listfigurename}{LIST OF FIGURES}
\renewcommand*{\listtablename}{LIST OF TABLES}
\renewcommand*{\bibname}{REFERENCES}
\begin{document}
\frontmatter % switches page numbering to Roman numerals
\mainmatter % resets the page numbering to 1 with Arabic numbers
\backmatter
\tableofcontents
\listoffigures
\listoftables
\begin{thebibliography}{9}
\bibitem{key} Bibliography Item
\end{thebibliography}
\end{document}