图片列表

图片列表

我希望我的图表列表和表格列表看起来有点像这样:

图片列表

第 1 章:啦啦啦

1.1 假文

1.2 复制 grgr grgr

1.3 fgog gofrg afe

第 3 章:大笑大笑毛

3.1 函数定义

3.2 dfd

3.4 df df d fd

你明白了吗?如果第 2 章不包含图片,我不希望第 2 章的标题出现在那里。

我想要表格列表也具有相同的功能。

我曾经在这个网站上找到过一些熟悉的东西,但现在找不到了。据我所知,那只是图集列表

我将非常感激所有的帮助!

\documentclass[a4paper, 12pt, twoside, dvipsnames,cmyk]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\begin{document}
\listoffigures
\listoftables
\include{chapters/contents}
\end{document}

我正在使用很多其他包,但我不确定它们是否相关?

答案1

您必须手动添加chapter所需的 s 条目。操作如下:

\addcontentsline{lof}{chapter}{My chapter with Figures}
\addcontentsline{lot}{chapter}{My chapter with Tables}

所以在你的代码中:

\documentclass{report}

\begin{document}

\chapter{My chapter with Figures and Tables}
\addcontentsline{lof}{chapter}{My chapter with Figures and Tables}
\addcontentsline{lot}{chapter}{My chapter with Figures and Tables}
This chapter contains Figures and Tables

\chapter{My chapter with Tables}
\addcontentsline{lot}{chapter}{My chapter with Tables}
This chapter contains Tables

\chapter{My chapter with Figures}
\addcontentsline{lof}{chapter}{My chapter with Figures}
This chapter contains Figures

\listoftables
\listoffigures

\end{document}

相关内容