我从目录中删除了子节。但是,副作用是,它也从自动生成的书签中删除了。但我希望子节仍然可以通过书签访问。如何同时实现两者?
到目前为止,我的做法如下:
\documentclass{article}
\setcounter{tocdepth}{1}
\begin{document}
\tableofcontents{}
\section{Section}
\subsection{Subsection}
\end{document}
答案1
使用包hyperref
你可以使用\hypersetup{bookmarksdepth=2}
并且使用包bookmark
你可以设置\bookmarksetup{depth=2}
:
\documentclass{article}
\usepackage{hyperref}
\hypersetup{bookmarksdepth=2}
\setcounter{tocdepth}{1}
\begin{document}
\tableofcontents{}
\section{Section}
\subsection{Subsection}
\end{document}
或者
\documentclass{article}
\usepackage{bookmark}
\bookmarksetup{depth=2}
\setcounter{tocdepth}{1}
\begin{document}
\tableofcontents{}
\section{Section}
\subsection{Subsection}
\end{document}