抱歉,如果这个问题之前没有得到回答,但我无法找到论坛中之前提出的类似问题的可能解决方案。我对 LaTex 非常陌生。目前,我正在使用某个模板撰写我的论文。使用该模板,我得到了以下图片列表页面:
虽然我想要这样的东西:
我目前正在使用:
\documentclass[a4paper,12pt,openright,notitlepage,twoside]{book}
\usepackage{tocloft} % it serves to make lists of the most beautiful figures and tables
\renewcommand{\cftfigfont}{Figure } % to add "Figures" in the list of figures
% List of Figures
\phantomsection
\listoffigures
\addcontentsline{toc}{chapter}{\listfigurename}
\cleardoublepage
请告诉我如何解决包含长句子的案例列表条目中的这个问题。
答案1
请再次阅读tocloft
文档。
% lofprob.tex SE 561254
\documentclass{book}
\usepackage{tocloft}
%\renewcommand{\cftfigfont}{Figure }
\renewcommand{\cftfigpresnum}{Figure } % put Figure before number
\setlength{\cftfignumwidth}{5em} % need more space for Figure + number
\begin{document}
\listoffigures
\chapter{A chapter}
\begin{figure}
\centering
A FIGURE
\caption{Regular caption}
\end{figure}
\begin{figure}
\centering
ANOTHER FIGURE
\caption{A caption that will take more than one line in the List of Figures}
\end{figure}
\end{document}
用来\cftfigpresnum
在数字前放置一些内容并增加,\cftfignumwidth
以适应修改数字所需的增加的空间。