목차에서 섹션 페이지 번호와 하위 섹션 페이지 번호의 선행 점 형식을 각각 지정하는 방법

목차에서 섹션 페이지 번호와 하위 섹션 페이지 번호의 선행 점 형식을 각각 지정하는 방법

모든 사람:

문제가 발생했습니다. 다음은 목차 형식을 지정하는 방법입니다.

\usepackage{tocloft}

\tocloftpagestyle{empty}

\renewcommand{\cftdot}{…}

\renewcommand{\cftdotsep}{0}

\renewcommand\cftsecleader{\cftdotfill{\cftdotsep}}

그 효과는 다음과 같습니다. 여기에 이미지 설명을 입력하세요

내 질문은 섹션 페이지 번호와 하위 섹션 페이지 번호의 선행 점 형식을 각각 지정하는 방법입니다. 하위 섹션 페이지 번호에 다른 선행 줄을 사용하고 싶습니다. 따로 설정하는 방법은 모르겠네요. 미리 감사드립니다.

답변1

아마도 이것이 당신이 요구하는 것일 수 있습니다 :

\documentclass{article}
\usepackage{blindtext}
\usepackage{tocloft}
\renewcommand{\cftsecdotsep}{7}
\renewcommand\cftsecleader{\bfseries\large\cftdotfill{\cftsecdotsep}}
\renewcommand{\cftsubsecdotsep}{4}
\renewcommand\cftsubsecleader{\normalsize\cftdotfill{\cftsubsecdotsep}}
\renewcommand{\cftsubsubsecdotsep}{1}
\renewcommand\cftsubsubsecleader{\small\cftdotfill{\cftsubsubsecdotsep}}
\begin{document}
  \tableofcontents
  \Blinddocument
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보