通常(在pdflatex
with下hyperref
)新增的部分\section
將出現在 LaTeX 目錄和 pdf 元資料中;而 a\section*
將從兩者中省略。
是否可以在元資料中包含一個(子)部分,但不在目錄中列出?
(所討論的用例是書中的章末練習和註釋:我們希望保持 TOC 整潔,但在 pdf 中為這些內容添加書籤非常方便。)
答案1
該包bookmark
提供了一個命令\bookmark[OPTIONS]{title}
。您需要定義一個超級目標並為其建立一個書籤:
\section*{Exercises and Notes}
\hypertarget{exercises}{}
\bookmark[level=section,dest=exercises]{Exercises and Notes}
bookmark
應該在之後加載hyperref
。