LaTeXでレポートを書いているのですが、単純に
\tableofcontents
\listoftables
とすると、tableofcontentsの最後のB 表下の B.1とかがインデントされません。
なので、うまくインデントする方法を考えました。
これにより、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