目录中可以没有单词分隔,但章节名称中有单词分隔吗:
例如:
Contents
1. max Mustermann
Chapter
Max Muster-
mann
答案1
您可以使用可选参数为任何内容提供备用的 ToC 特定条目\chapter
:
\chapter[<ToC entry>]{<body entry>}
如果您希望在正文中保留在目录中可能没有价值的无标准格式选项,这通常很方便。
答案2
写入序言(假设您处于单列模式)
\makeatletter
\def\@chapter[#1]#2{%
\if@mainmatter
\refstepcounter{chapter}%
\typeout{\@chapapp\space\thechapter.}%
\addcontentsline{toc}{chapter}{\protect\numberline{\thechapter}\mbox{#1}}%
\else
\addcontentsline{toc}{chapter}{\mbox{#1}}%
\fi
\chaptermark{#1}%
\addtocontents{lof}{\protect\addvspace{10\p@}}%
\addtocontents{lot}{\protect\addvspace{10\p@}}%
\@makechapterhead{#2}%
\@afterheading
}
\makeatother