如何改变图表列表的顺序以及如何改变图表列表标题的样式?

如何改变图表列表的顺序以及如何改变图表列表标题的样式?

我想我的问题很基础,但由于我是 Latex 新手,我无法解决它。我想要斜体显示“图片列表”标题。并且在图片列表中,我不想使用数字来表示图片,而是使用图片编号本身,例如图 1、图 2 等。

答案1

使用tocloft包:

\documentclass...
\usepackage{tocloft}
\renewcommand{\cftloftitlefont}{\Large\itshape} % italic LoF title
\setlength{\cftfignumwidth}{5em} % space for Figure and number; change to suit
\renewcommand{\cftfigpresnum}{Figure} % put Figure before number

阅读手册(texdoc tocloft)并对上述代码进行适当调整。

相关内容