minitoc 打印的深度与全局 toc 不同

minitoc 打印的深度与全局 toc 不同

我希望 minitoc 能够打印例如子小节,就像以下最小示例中的 toc 所做的那样。但是 minitoc 不会打印以下子小节“子小节未显示在 minitoc 中”:

\documentclass{book}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\usepackage{minitoc}

\begin{document}
\dominitoc
\tableofcontents

\chapter{Chapter title}

\minitoc

\section{Test 1}
hello

\section{Test 2}
hello

\subsection{Test 2 subsection}
hello

\subsubsection{Subsubsection not show up in minitoc}
hello
\end{document}

答案1

像这样?

deeper mini-toc

我假设手册minitoc解释了这一点,假设它有一个,但老实说,我只是猜测。

\documentclass{book}
\usepackage{minitoc}
\setcounter{secnumdepth}{5}
\setcounter{tocdepth}{5}
\setcounter{minitocdepth}{5}

\begin{document}
\dominitoc
\tableofcontents

\chapter{Chapter title}

\minitoc

\section{Test 1}
hello

\section{Test 2}
hello

\subsection{Test 2 subsection}
hello

\subsubsection{Subsubsection not show up in minitoc}
hello
\end{document}

相关内容