ToC에서 관련 없는 번호 숨기기

ToC에서 관련 없는 번호 숨기기

에 관해 질문이 있습니다.섹션 번호 매기기내 파일에. 나는 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).

이 숫자를 어떻게 없앨 수 있나요?

관련 정보