目次のセクションページ番号とサブセクションページ番号の先頭のドットをそれぞれフォーマットする方法

目次のセクションページ番号とサブセクションページ番号の先頭のドットをそれぞれフォーマットする方法

みんな:

問題が発生しました。目次の書式設定は次のとおりです。

\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}

ここに画像の説明を入力してください

関連情報