图形列表问题

图形列表问题

我需要制作一个图表列表,其中引用了我文档中包含的一些图片。我一直在使用

\addcontentsline{lof}{subsection}{\arabic{slike}.\hspace{5mm}\hyperref[sl:1]{Picture 1.}}

但它就是不起作用。我必须说,我的图片没有包含在figure环境中,我将它们包含在迷你页面中。

我应该怎么办 ?

答案1

您不需要figure环境即可获取放置在图形列表中的图形标题。该caption包提供了允许您将标题放置在图形环境之外的命令\captionof{<float type>}{<caption text>},例如

\captionof{figure}{A caption}

在此处输入图片描述

\documentclass{article}
\usepackage{graphicx}
\usepackage{caption}
\usepackage[croatian]{babel}
\usepackage{hyperref}
\begin{document}
\listoffigures

\vspace{1cm} % just for this example
\begin{minipage}{\linewidth}
\centering
\includegraphics[width=.3\linewidth]{example-image}
\captionof{figure}{A figure caption, not in the \texttt{figure}-environment.}
\end{minipage}
\end{document}

答案2

“浮点表”列出了浮点。您可以使用图形环境或定义自己的浮点,例如通过使用 float 包。具体如何设置表格取决于文档类。

相关内容