目录中的章节标题

目录中的章节标题

我遇到了以下简单的问题。我的一个部分的名称很长。因此我决定在其标题中加一个换行符。对于标题,我使用此标题的简短版本。所以它看起来像这样

\section[Short]{Long title part 1 \newline Long title part 2}

现在我想知道以下问题:如何避免\newline在目录中也使用 will? 有办法吗?

答案1

由于您使用的是 scrbook,因此手册(第 86 页)建议您可以使用可选参数

[head={heading text}, tocentry={toc text}]{long main section heading}

在此处输入图片描述

在此处输入图片描述

\documentclass[headings=optiontoheadandtoc]{scrbook}
\listfiles
\begin{document}

\tableofcontents
\chapter[head={cc heading text}, tocentry={cc toc text}]{long main cc heading}
zzz

\section[head={ss heading text}, tocentry={sstoc text}]{ss heading}

zzzz

\clearpage

aaaa
\clearpage
hhhh
\end{document}

相关内容