In my LaTeX document, I want to add some extra lines in the Table of Contents to show the general topic of the next section of chapters. The syntax I'm using right now, outlined in a quick example:
\tableofcontents
\chapter{Chapter A}
some text
\chapter{Chapter B}
some text
\renewcommand{\thepart}{} %Removes the counting in roman numerals before the part name
\addcontentsline{toc}{part}{And now for something completely different} %Adds it to the table of contents without it showing up in the document.
\chapter{Chapter C}
some text
\chapter{Chapter D}
some text
However, I want to remove the page number that appears besides the title of 'And now for something completely different' in the Table of Contents. Is there an (easy, preferably without creating your own packages) way to do so?
hyperrefpackage, which overrides that command, according to other posts I read on here. – Zelphir Kaltstahl Jul 05 '17 at 12:08Argument of \contentsline has an extra}. \contentslinedue tohyper ref, see this post – Frenzy Li Jan 16 '19 at 15:12