\listoffigures 不显示图片的标题

\listoffigures 不显示图片的标题

我目前正在撰写论文,需要创建一个图表列表(和表格,但还没有完成)。我已经成功创建了实际列表,但它没有显示图表的标题或标签。此外,列表中没有空格。它看起来像这样(见附图):

现在的情况

我希望它以这种格式显示:

图号,我写的实际标题或我选择的标签,页码。例如:图 2.2,系统边界 LCA,18

图表清单所用代码

 % List of figures (add to table of contents)
\cleardoublepage
\addcontentsline{toc}{chapter}{\listfigurename} 
\listoffigures 

这是我用来插入图形的代码:(以防我在这里犯了一个错误,导致它不起作用。)

\begin{figure} [H]
    \centering
    \includegraphics[width=\textwidth] {figure/Images/System boundariesLCA.JPG}
    \caption{Life cycle stages for a building according to the standard SS-EN 15978 \citeyear{StandardLCA2011} }
    \label{fig:System Boundaries LCA}
\end{figure} 

提前致谢!

相关内容