我正在读这个问题:
并且,出于导航目的,我真的很喜欢在侧面板(xreader 等)中看到大纲,但我不想在论文中看到像 3.2.3.1 这样的内容。
我尝试使用\paragraph*{}
、\subparagraph*{}
等,但我无法让它显示在侧面板上而不显示在报纸上。
提前致谢!
答案1
计数器tocdepth
值决定了哪个结构级别将出现在ToC
和相关书签面板中。显示所有常见结构级别(即从\part
到\subparagraph
),例如\setcounter{tocdepth}{5}
。
为了隐藏部分等,数字使用适当的secnumdepth
计数器值。隐藏段落等只需要一个值3
。
bookmark
如果加载了包,则会有更多选项可用。
不要忘记编译两次以使更改生效。
有关更详细的描述,请参阅https://tex.stackexchange.com/a/291312请。
\documentclass{book}
\usepackage[bookmarksopen=true,bookmarksopenlevel=5]{hyperref}
\setcounter{secnumdepth}{3}% Only down to \subsubsection shall be numbered
\setcounter{tocdepth}{5}
\begin{document}
\tableofcontents
\chapter{Foo chapter}
\section{Foo section}
\subsection{Foo subsection}
\subsubsection{Foo subsubsection}
\paragraph{Foo paragraph}
\subparagraph{Foo subparagraph}
\end{document}