0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

LaTeXの目次にて見出しとページ番号を点線で結ぶ

Posted at

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

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?