General ⇒ Change table of contents title
Change table of contents title
Hi,
I'm writing a non-english document in LaTeX, so I would like to change the title of the table of contents generated by the \tableofcontents command. I'm failry inexperienced with LaTeX and have no clue how to do that, so any help would be appreciated.
- Jolle
I'm writing a non-english document in LaTeX, so I would like to change the title of the table of contents generated by the \tableofcontents command. I'm failry inexperienced with LaTeX and have no clue how to do that, so any help would be appreciated.
- Jolle
Last edited by jolle on Tue Nov 11, 2008 9:21 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Change table of contents title
Regardless of the language you want to write in, you should take a look at the babel package for multilingual documents. It redefines such names according to the given language and provides the correct hyphenation. Refer to its documentation and choose your language.
Best regards
Thorsten¹
Best regards
Thorsten¹
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Change table of contents title
Thanks for the suggestion; I will definitely use that package in the future. However, this document is already finished except for the toc title and a few other details, and I would like to keep everything as is. So in this case, I'd prefer to just change the toc title.
- Jolle
- Jolle
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Change table of contents title
LaTeX.org admin
- localghost
- Site Moderator
- Posts: 9202
- Joined: Fri Feb 02, 2007 12:06 pm
Change table of contents title
Inserting babel will not cause any changes in your document concerning paper and pages dimensions or the general layout of your document. So, this is the preferable way of changing the ToC name. But, if you insist.
Note that wrong hyphenation for your chosen language will be kept. Hence using babel is strongly recommend.
Code: Select all
\renewcommand{\contentsname}{Inhaltsverzeichnis}
How to make a "Minimal Example"
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Board Rules
Avoidable Mistakes
¹ System: TeX Live 2025 (vanilla), TeXworks 0.6.10
Re: Change table of contents title
Ah, that's exactly what I was looking for! Thanks!
Re: [Solved] Change table of contents title
Hi....how can i do the same thing for the 'List of Figures' and the 'List of Tables'
Thanks
Thanks
Change table of contents title
Hi...sorry..I just found the answer in a previous post..
thanks..
the answer was:
Just that
thanks..
the answer was:
Code: Select all
\renewcommand*\listfigurename{List of figures}
Last edited by cgnieder on Sat Dec 15, 2012 2:49 pm, edited 1 time in total.
Re: [Solved] Change table of contents title
I've tried these methods in Lyx without luck. But via 'Insert TeX Code' and the Documents - Settings Latex Preamble.
For some reason my documents keeps calling the table of contents for 'Contents' ..
Any ideas?
For some reason my documents keeps calling the table of contents for 'Contents' ..

Any ideas?
- Stefan Kottwitz
- Site Admin
- Posts: 10348
- Joined: Mon Mar 10, 2008 9:44 pm
Change table of contents title
Welcome to the board!
If you use babel, use this, modify corresponding to your language:
Stefan
If you use babel, use this, modify corresponding to your language:
Code: Select all
\addto{\captionsenglish}{\renewcommand*{\contentsname}{Table of contents}}
LaTeX.org admin