[Tex/LaTex] Putting table of contents in a page without other elements

page-breakingtable of contents

I want to put the table of contents in a separate blank page where it will be alone without any other element. How can I achieve this?

Best Answer

Using \clearpage is the mechanism in LaTeX to force content to be sent to the next page. In this case since you want to have the table of content on its own page, you need to call \clearpage before and after invoking \tableofcontents

Related Question