0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【LaTeX】tableofcontentsにいい感じでlistoftablesをつなげたい

Last updated at Posted at 2021-02-19

LaTeXでレポートを書いているのですが、単純に

\tableofcontents

\listoftables

とすると、tableofcontentsの最後のB 表下の B.1とかがインデントされません。

image.png

なので、うまくインデントする方法を考えました。
これにより、ableofcontentsにいい感じでlistoftablesをつなげられます。

\usepackage{tocloft}
・・・
\setcounter{tocdepth}{3}
% 3 = \subsubsectionまで
\tableofcontents

\makeatletter
\renewcommand\listoftables{%
    \@starttoc{lot}%
}
\makeatother %listoftablesのタイトルを表示しない
\cftsetindents{tab}{3.80em}{3.25em} % listoftablesをうまい感じでインデントする
\listoftables

結果

image.png

Reference

0
0
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
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?