As How to hide the table of content's heading? I am trying to remove the table of contents title in the book class. For this, like @Thorsten:
\newcommand\tableofcontents{%
\if@twocolumn
\@restonecoltrue\onecolumn
\else
\@restonecolfalse
\fi
\chapter*{\contentsname
\@mkboth{%
\MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%
\@starttoc{toc}%
\if@restonecol\twocolumn\fi
}
I delete the \chapter*{} part and renewcommand instead of newcommand
But it doesn't work, the title is still displayed.
Any ideas for removing the title from the book class?
\chapter*{\contentsname \@mkboth{% \MakeUppercase\contentsname}{\MakeUppercase\contentsname}}%with some thing like\newpage? can you please add MWE? let us know if you're using package likeetocortitletoc... – touhami Feb 14 '20 at 13:30