Page Layout ⇒ Pagination + subsubsection on table of contents
Pagination + subsubsection on table of contents
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?
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
Re: Pagination + subsubsection on table of contents
\setcounter{secnumdepth}{4}
Pagination + subsubsection on table of contents
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}