如何删除段落编号,但仍使用 hyperref 保留 LateX 文件中的链接?这有点像这个问题,但有段落: 没有章节编号,但仍然有带超链接的 PDF 书签
答案1
只需相应地设置计数器secnumdepth
。
如果段落标题没有出现在目录中(计数器tocdepth
),那么书签的深度可以设置为不同的值。
完整示例:
\documentclass{article}
\usepackage{hyperref}
\usepackage{bookmark}
\bookmarksetup{
open,
numbered,
depth=5, % otherwise the setting of counter `tocdepth' would be used
}
\setcounter{secnumdepth}{2}
\begin{document}
\section{Section}
\subsection{Subsection}
\paragraph{Paragraph}
\subparagraph{Subparagraph}
\end{document}