更新,原方法存在问题是,对于序号超过9,即序号为两位数的情况下,文字的对齐出现是表现出从最开始的图对齐,序号和数字空格固定,不美观。
现采用如方式,直接将listoffigures
替换为
% 插图目录,为了添加在序号前添加图字样
{
\let\oldnumberline\numberline
\renewcommand{\numberline}{\figurename~\oldnumberline}
\listoffigures
}
表格同理,将\listoftables
的替换为
% 表格目录,为了添加在序号前添加表字样
{
\let\oldnumberline\numberline
\renewcommand{\numberline}{\tablename~\oldnumberline}
\listoftables
}
Ref:
https://www.jianshu.com/p/f2f377ee7ec1
https://www.latexstudio.net/archives/6202.html
原方法
默认情况下,使用\listoffigures
和\listoftables
的效果如下图,前面是没有任务前缀,而毕业论文是需要添加前缀图和表。
解决方法是
- 使用renewcommand
\newcommand{\loflabel}{图}%在图目录编号前添加图
\newcommand{\lotlabel}{表}%在表目录编号前添加表
\listoffigures前增加
\renewcommand{\numberline}[1]{\loflabel~#1\hspace*{1em}}
\listoftables 前增加
\renewcommand{\numberline}[1]{\lotlabel~#1\hspace*{1em}}
 ̄﹃ ̄
a
ok
right