General ⇒ How do I put the title of the second page of TOC?
How do I put the title of the second page of TOC?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
How do I put the title of the second page of TOC?
you could use \addtocontents. For example:
Code: Select all
\addtocontents{toc}{\protect\chapter*{Table of Contents (Continued)}}
The exact solution depends on your documentclass and your wishes, you don't have to use \chapter* in the code line above, you could just use something like \Large\bfseries ... if you use fragile commands as parameter for \addtocontents then use \protect like I did above.
Stefan