如何仅显示章节的书签编号

如何仅显示章节的书签编号

我正在使用该bookmark包为输出的 pdf 添加书签,我想显示章节的书签编号,但只显示章节的标题,我已经在谷歌上搜索过,但没有找到合适的结果,我该怎么做?

% this is what I am using for bookmarking.
\usepackage[numbered]{bookmark}

提前致谢。

答案1

我认为没有自动界面。必须修补一些命令。但手动操作很容易:

\documentclass{book}

\usepackage[numbered,depth=section]{bookmark}

\begin{document}
\chapter{Foo}
\bookmarksetup{numbered=false}
\section{Foobar}
\subsection{FooFoobar}

\bookmarksetup{numbered}
\chapter{Foo 2}
\end{document}

在此处输入图片描述

相关内容