这就是我所拥有的:
我想要的是:(数字和标题之间的连字符)
我从下面这两个问题中找到了 tocloft 包,但它对我不起作用。我使用的是自定义类(不是我创建的),因此很难确切地说出哪个参数导致了某些不兼容。
有什么想法可以解决这个问题吗,最好不要使用 tocloft 包?
请告诉我需要哪些详细信息。
答案1
您没有显示任何代码。您使用的是哪个类?您使用的是哪个包?您显示的不是常规 LaTeX 输出。您尝试了什么tocloft
?
下面是基于article
类别和tocloft
包的 MWE,它为您提供了您所追求的 LoF。
% tocloftprob.tex SE 562533
\documentclass{article}
\usepackage{tocloft}
% change LoF title and position
\renewcommand{\listfigurename}{LIST DE ILUSTRACOES}
\renewcommand{\cftloftitlefont}{\hfill\Large\bfseries}
\renewcommand{\cftafterloftitle}{\hfill}
% change appearance of figure number
\renewcommand{\cftfigpresnum}{Figura } % put this before the number
\renewcommand{\cftfigaftersnum}{ ---} % put this after number
\setlength{\cftfignumwidth}{5.2em} % need more space for changed number represenation
\begin{document}
\listoffigures
\clearpage
\begin{figure}
\centering
AN ILLUSTRATION
\caption{A figure}
\end{figure}
\end{document}
也许上述内容有些不相关,因为您似乎已经设法(我不知道如何)更改了 LoF 的标题及其位置。