我论文使用的模板在图表的编号和文字之间没有足够的空间。这导致表格看起来像这样:
3.17 答案演示器编辑器原型. . . . . . . . . . . . . . . . . . . . . . . . . . . 120
我查看了多个来源,但似乎找不到增加数字和首字母之间空格的解决方案,例如在上面的例子中,我希望在 3.17 和首字母“A”之间留出更多空格。
有没有办法添加一些空间?
谢谢!
答案1
在没有 mwe 的情况下,这是一次盲射。
您可以使用tocloft
包并更改\cftfignumwidth
\usepackage{tocloft}
\setlength{\cftfignumwidth}{2.55em}
按照你希望的去改变2.55em
。
\documentclass{book}
\usepackage{tocloft}
\setlength{\cftfignumwidth}{2.55em}
\begin{document}
\listoffigures
\setcounter{chapter}{2}
\chapter{some}
\setcounter{figure}{16}
\begin{figure}[htb]
\caption{Some figure comes here}
\end{figure}
\end{document}