我知道如何使用包自定义章节和部分目录titletoc
,就像这样:
\titlecontents{chapter}[0pt]{\vspace{.1\baselineskip}\bfseries}
{\thecontentslabel\hspace{2.8mm}}{}
{\hspace{.5em}\titlerule*[10pt]{$\cdot$}\contentspage}
但是如果我要这样做\listoftable
,\listoffigure
该怎么办?
它的第一个参数是什么?
答案1
它完全相同,但是在 的第一个强制参数中使用figure
(或) ;这里有一个简单的例子,仅用于说明,其中 LoF 中的数字将显示在框架中,并且领导者由 组成:table
\titlecontents
$\cdot$
\documentclass{article}
\usepackage{titletoc}
\titlecontents{figure}
[0em]{}
{\fbox{\thecontentslabel}\hspace*{1.5em}}
{}{\ \titlerule*[8pt]{$\cdot$}\contentspage}
\begin{document}
\listoffigures
\begin{figure}
\caption{A test caption}
\end{figure}
\begin{figure}
\caption{Another test caption}
\end{figure}
\end{document}