显示大纲中的子部分

显示大纲中的子部分

我一直试图在大纲中显示我的子部分,但无法做到。我使用了以下命令:

\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}

我可以在章节中看到所有子章节,但在大纲中看不到它们。我是不是漏掉了什么?我可以看到子章节。但在大纲中看不到 \paragraph 和 \subparagraph。

\documentclass{report}
\chapter{sectioning}
\listfiles

\makeindex
\begin{document}

\setcounter{tocdepth}{4}
\setcounter{secnumdepth}{4}
\section{titles}
\subsection{subtitles}
\subsubsection{subsubtitles}
\paragraph{subsubsubtitles}
\end{document}

答案1

感谢 MWE。我不太清楚“大纲”是什么。你是指目录吗?如果是,那么你需要更改tocdepth并插入\tableofcontents

在此处输入图片描述

\documentclass{report}

\listfiles

\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}

\begin{document}
\tableofcontents
\chapter{sectioning}
\section{titles}
\subsection{subtitles}
\subsubsection{subsubtitles}
\paragraph{subsubsubtitles}
\end{document}

答案2

有可能(但不太清楚)您的意思是 PDF 书签/大纲而不是页面内的目录,hyperref有一个控制深度的选项。

在此处输入图片描述

\documentclass{report}


\listfiles

\setcounter{tocdepth}{5}
\setcounter{secnumdepth}{5}
\usepackage[bookmarksdepth=5]{hyperref}
\begin{document}
\tableofcontents
\chapter{sectioning}
\section{titles}
\subsection{subtitles}
\subsubsection{subsubtitles}
\paragraph{subsubsubtitles}
\end{document}

相关内容