Purpose
jsarticleで見出しを
\part*{第1章 hogehoge}
\section*{1.1 hogehoge}
\addcontentsline{toc}{section}{1.1 hogehoge}
などのように自動でナンバリングされないようにしていると、目次にて見出しとページ番号の間が空白になってしまう。これを修正し見出しとページ番号の間が点線で結ばれるようにする。
How to
main.tex
\documentclass{jsarticle}
\usepackage{tocloft}
%==============================
\renewcommand\cftdotsep{0} %数値は点と点の間隔
\renewcommand\cftsecleader{\cftdotfill{\cftsecdotsep}}
\renewcommand\cftsecdotsep{\cftdotsep}
%==============================
\begin{document}
\listofcontents
\part*{第1章 hogehoge}
\section*{1.1 hogehoge}
\addcontentsline{toc}{section}{1.1 hogehoge}
\end{document}
今回はsectionに対して適用したが、例えばこれをsubsectionに適用するには、\cftsecleader と \cftsecdotsep の "sec" の部分を "subsec" に変更する。
Reference