答案1
如果您想使用\addto\captionturkish
,则应将其添加到序言中。如果您在 之前立即添加代码\tableofcontents
,那么\renewcommand{\contentsname}{...}
就可以了。
对于第一页后的标题\tableofcontents
,这里有一个解决方案,灵感来自https://tex.stackexchange.com/a/72991/226:
%%% IN THE PREAMBLE
\usepackage{atbegshi}
\makeatletter
\newcommand{\AtBeginShipoutClear}{\gdef\AtBegShi@Hook{}}
\makeatother
%%% IN THE DOCUMENT BODY
\AtBeginShipout{\textbf{İÇİNDEKİLER (Devam)}\par}
\tableofcontents
\AtBeginShipoutClear % Clears the heading
您可以用\listoffigures
等类似方法重复此操作。
答案2
内容标题(页面和目录)必须用大写字母书写。
\renewcommand\contentsname{İÇİNDEKİLER}
目录标题的第二页或第三页必须是“İçindekiler (devam)”。
\addtocontents{toc}{\protect\chapter*{İÇİNDEKİLER (Devam)}}
如果你想在图表列表中添加标题
\addtocontents{lof}{\protect\chapter*{ŞEKİLLER DİZİNİ (Devam)}}
对于子部分,目录中必须有下划线
\renewcommand{\cftsubsubsectionfont}{\underline}