内容中没有“章节”文字的章节

内容中没有“章节”文字的章节

有没有办法使用不Chapter 1带等列表的章节?我只希望显示章节名称而不是编号。

答案1

你有没有尝试过\chapter*{here your chapter}

记住:如果您使用它并希望tableofcontents为每个部分构建一个addcontentsline,则应添加一个。请参阅这一页

干杯

答案2

如果你正在使用标准类之一(bookreport),那么可以使用titlesec包装并说类似

\documentclass{book}
\usepackage{titlesec}

\titleformat{\chapter}[display]
  {\normalfont\huge\bfseries}{}{0pt}{\Huge}
\titlespacing*{\chapter}
  {0pt}{10pt}{40pt}

\begin{document}

\tableofcontents
\chapter{Test Numbered Chapter}
\chapter*{Test Unnumbered Chapter}

\end{document}

在此处输入图片描述

上述代码不会删除目录中条目的编号;若要删除这些编号,请添加到序言中

\usepackage{titletoc}

\titlecontents{chapter}[0em]{\bfseries}{}{}
   {\hfill\contentspage}

相关内容