Please how do I rename my table of content title from "content" to "table of content"? I am using a report class please
Asked
Active
Viewed 130 times
0
-
https://tex.stackexchange.com/questions/28516/how-to-change-the-title-of-toc might be related? – citsahcots Aug 14 '21 at 23:42
-
I don't think so... mine is a thesis. Please help. – A M Bello Aug 14 '21 at 23:46
-
This answer can probably help, even though its question is marked as a duplicate: https://tex.stackexchange.com/a/499069 – barbara beeton Aug 15 '21 at 02:05
1 Answers
2
Please see if the following example helps.
\documentclass{report}
\renewcommand{\contentsname}{Table of Content}
\begin{document}
\tableofcontents
\part{Part}
\chapter{Chapter}
\section{Section}
\subsection{Subsection}
\end{document}
citsahcots
- 7,992
