我有一個關於節的編號在我的文件中。我使用article
類別並tocloft
格式化我的目錄。相關指令是:
%customize table of contents
\addto{\captionsngerman}{\renewcommand*\contentsname{Inhalt\vspace{0.2cm}\hrule}} %change title
\renewcommand{\cfttoctitlefont}{\hfil\Large} %adjust toc title
\renewcommand{\cftdotsep}{1} %smaller spaces between dots
我還用它來刪除部分編號:
%%hide section number
\makeatletter
\let\latexl@section\l@section
\def\l@section#1#2{\begingroup\let\numberline\@gobble\latexl@section{#1}{#2}\endgroup}
\makeatother
但是,我也想要我的部分的虛線。但是當我這樣做時:
%%dotted lines for sections
\renewcommand{\cftsecleader}{\cftdotfill{\cftdotsep}{1}}
ToC 有一些我不想看到的額外數字(圖:1)。
我怎樣才能擺脫這些數字?