我有一个关于章节编号在我的文件中。我使用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}}
目录中有一些我不想看到的额外数字(图中:1)。
我怎样才能摆脱这些数字?