revtex 樣式檔案會覆蓋通常的 tocdepth 指令,因此它沒有任何效果。從上一篇文章中我學會如何減少 toc深度:例如,
\makeatletter
\def\l@subsubsection#1#2{}
\makeatother
將關閉目錄中的小節清單;它的效果與
\setcounter{tocdepth}{3}
在普通的 LaTeX 中就會有。但我有相反的問題:我想打開段落列表,即我想將 toc深度增加到 5。我正在使用 rmp 文檔類運行 revtex4-1 。
答案1
\makeatletter
\def\l@paragraph{\@dottedtocline{4}{5.3em}{2.1em}}
\makeatother
\tableofcontents
在命令發揮作用之前。