0

Please how do I rename my table of content title from "content" to "table of content"? I am using a report class please

1 Answers1

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}

enter image description here

citsahcots
  • 7,992