每個人:
我遇到了一個問題。以下是我如何格式化目錄:
\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}