When I create a chapter like below, I get Chapter 1 for example.
\chapter{My Chapter Title}
But my document is in Turkish so I need to display Bölüm 1 instead. This is also happening for Table of Contents.
How can I override this?
When I create a chapter like below, I get Chapter 1 for example.
\chapter{My Chapter Title}
But my document is in Turkish so I need to display Bölüm 1 instead. This is also happening for Table of Contents.
How can I override this?
You might want to try \usepackage[turkish]{babel} to set the language of the document.
borrowed from egreg: \addtoextrasturkish{\renewcommand{\contentsname}{WHATEVER}} if you are trying to add any other word.
\addtoextrasturkish{\renewcommand{\contentsname}{WHATEVER}} in your preamble. Andy may want to add this to his answer.
– egreg
Oct 20 '11 at 11:03
\addto\extrasturkish{\renewcommand{\contentsname}{WHATEVER}}. Note the extra .
– Kartal Tabak
Mar 16 '17 at 20:06