我無法\subsubsection
使用我的論文腳本來獲取圖層。它在小節內工作正常,但不能超出該水平。計數器的深度已設定為 3,因此應該可以工作,\subsubsection
但事實並非如此。必要的文件是:
答案1
文檔類別會載入特定於字體的文件.clo
,具體取決於載入時給出的字體大小選項:
10pt
(默認,如果沒有指定):loadsuct10.clo
;11pt
:負載uct11.clo
;和12pt
:負載uct12.clo
你會看到這些行
356: % The value of the counter secnumdepth gives the depth of the
357: % highest-level sectioning command that is to produce section numbers.
358: %
359:
360: \setcounter{secnumdepth}{2}
在每個文件中。所以,即使ucr.cls
包含行
138: \setcounter{secnumdepth}{3}
\subsubsection
這應該允許顯示最高級別的節號,當.clo
加載相應的節號時它會被覆蓋。要嘛在文件中修復這個問題.clo
,要嘛更改.cls
問題(比如說)
\AtBeginDocument{\setcounter{secnumdepth}{3}}
或者只是問題
\setcounter{secnumdepth}{3}
在你的序言中。