有没有办法使用不Chapter 1
带等列表的章节?我只希望显示章节名称而不是编号。
答案1
你有没有尝试过\chapter*{here your chapter}
?
记住:如果您使用它并希望tableofcontents
为每个部分构建一个addcontentsline
,则应添加一个。请参阅这一页
干杯
答案2
如果你正在使用标准类之一(book
,report
),那么可以使用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}