目次内の無関係な数字を非表示にする

目次内の無関係な数字を非表示にする

質問がありますセクションの番号付け私のファイルでは、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)。

これらの数字を取り除くにはどうすればいいでしょうか?

関連情報