将表格列表和图片列表设置为目录中的部分

将表格列表和图片列表设置为目录中的部分

我希望图表列表和表格列表以节而不是章的形式出现在目录中。有点像上面的元素(从摘要到首字母缩略词)

快速提醒一下我使用过

\表列表

\图列表

自动生成表格和图片列表

我也用过

\section*{摘要} \label{sec:summary} \addcontentsline{toc}{section}{\nameref{sec:summary}}

创建并将章节添加到目录中

目录

答案1

使用包的建议tocbasic

\documentclass{book}
\usepackage{blindtext}% only for dummy text

\usepackage{tocbasic}
\renewcommand*{\listoffigures}{\listoftoc[\listfigurename]{lof}}
\renewcommand*{\listoftables}{\listoftoc[\listtablename]{lot}}
\setuptoc{lof}{leveldown,totoc}
\setuptoc{lot}{leveldown,totoc}

\begin{document}
\listoffigures
\listoftables

\tableofcontents
\blinddocument
\begin{table}
  \caption{A table}
\end{table}
\begin{figure}%
  \caption{A figure}%
\end{figure}
\end{document}

在此处输入图片描述

备注:tocbasic不可与包装tocloft或一起使用titletoc

答案2

尝试一下,无需更改任何现有的代码。

% loftoc.tex  SE 600162
\documentclass{report}
\begin{document}
\tableofcontents
\clearpage
\addcontentsline{toc}{section}{List of Figures}
\listoffigures

\chapter{First}

\begin{figure}
\centering
\caption{A figure}
\end{figure}

\end{document}

该宏\addcontentsline是基本的 LaTeX。

在此处输入图片描述

相关内容