The Doxygen LaTeX output starts with an extensive table of contents. Later on, it contains "Chapters" for the "Module Index," "File Index," etc. In my mind these Index chapters are totally redundant and I would like to get rid of them. How can I do so?
I also made a custom index-like \page
for the HTML output, but would like to hide it from the LaTeX/PDF output. Is this possible?
\latexonly
and\htmlonly
tags are used to include raw text to send directly to LaTeX or to HTML. So adding a\htmlonly
tag around my index-like\page
makes it disappear from both outputs. – Aaron Campbell