內容中沒有「章節」文本的章節

內容中沒有「章節」文本的章節

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

相關內容