页眉中的章节/节标题无编号

页眉中的章节/节标题无编号

我希望文档的标题中包含章节和小节。但编号不应该存在。

答案1

也许您可以重新定义您的章节和部分?

\documentclass{book}
\usepackage{lipsum}

\newcommand\mychapter[1]{\chapter*{#1}%
\addcontentsline{toc}{chapter}{\protect\numberline{}#1}%
\def\rightmark{#1}}
\newcommand\mysection[1]{\section*{#1}%
\addcontentsline{toc}{section}{\protect\numberline{}#1}%
\def\leftmark{#1}}

\begin{document}
\tableofcontents
\mychapter{First chapter}
\mysection{First section}
\lipsum[1-10]
\mysection{Second section}
\lipsum[1-10]
\mychapter{Second chapter}
\lipsum[1-10]
\end{document}

当你写入时\mychapter{Chapter title},LaTeX 将:

  • 创建一个未编号的章节,标题为:\chapter*{#1}
  • 将其添加到目录中:

    \addcontentsline{toc}{chapter}{\protect\numberline{}#1}

    (未编号的内容通常不会出现在目录中)

  • 在页面标题中设置正确的标题:\def\rightmark{#1}

相关内容