如何結束章節*和開始章節

如何結束章節*和開始章節

在我的論文範本中,奉獻和致謝是章節*{},而其他章節是章節{}。問題來自於使用 hyperref 書籤。所發生的情況是目錄嵌套在確認部分中。圖列表嵌套在目錄中,表列表嵌套在圖列表中。

答案1

也許不是最優雅的解決方案...

\documentclass{book}

\usepackage{lipsum}
\usepackage{hyperref}
\usepackage{bookmark}

\begin{document}

\bookmarksetup{depth=-1}

\cleardoublepage
\pdfbookmark[0]{Preface}{preface}
\chapter*{Preface}
\lipsum

\cleardoublepage
\pdfbookmark[0]{Acknowledgments}{acknowledgements}
\chapter*{Acknowledgements}
Thanks to everybody.

\cleardoublepage
\pdfbookmark[0]{Contents}{toc}
\tableofcontents

\bookmarksetup{depth=0} %or a number >0

\chapter{First chapter}
\lipsum

\end{document}

答案2

\addcontentsline{file}{sec_unit}{entry}我猜你的問題是你的之後的線路湖 \chapter*{entry}

  • 文件:指要新增行的文件。在你的情況下,toc,對於tableofcontents
  • 秒單位:切片類型。在你的情況下是一章。
  • 入口:您要新增的行。說一下章節的名稱。

我會用一個例子來說明它的用法。想像一下你所關注的章節名為介紹。因此,您應該chapter向 , 中添加一行tableofcontents,稱為toc,然後在您的程式碼中使用它,

\documentclass{report}

\begin{document}

\tableofcontents

\chapter*{Introduction}
\addcontentsline{toc}{chapter}{Introduction}

\chapter{First chapter}


\end{document}

希望它會有所幫助!

乾杯

相關內容