有沒有辦法使用沒有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}