错误标头的问题

错误标头的问题

我遇到了一个奇怪的问题。

在我的代码中我有

\tableofcontents
\input{./path/to/my/other/texfile.tex}

我的摘要生成得很好,但文件的其余部分如下所示:

\chapter*{A Chapter of Definitions}

%\singlespacing

\section*{A Section}

Some text.


\begin{enumerate}
  \item \textbf{Name of list}
  \begin{enumerate}
    \item \textbf{First item:} Text.
...

我的 dvi 中出现了标题为 的文件SUMMARY,但该文件不属于摘要。这是什么问题?我该如何修复它?

我的凌乱的 main.tex 在其中关联在 pastebin 中。

答案1

带星号的分段命令不会设置标题标记,这就是以前的标记仍然出现的原因。根据类、标题布局和使用的标题包,您可以使用\markboth,也许也可以\markleft自己使用,例如

\chapter*{A Chapter of Definitions}
\section*{A Section}
\markboth{A Chapter of Definitions}{A Section}

\chaptermark\sectionmark,如果它们被定义,例如

\chapter*{A Chapter of Definitions}
\chaptermark{A Chapter of Definitions}
\section*{A Section}
\sectionmark{A Section}

如果没有具体的代码,这只是一般建议。

相关内容