图表引用存在问题

图表引用存在问题

我正在使用 LaTeX 完成我的课程结论写作,并插入我使用标准代码的图像,例如

\begin{figure}[!h]
\centering
\includegraphics[width=13cm]{lixeoutroa}
\caption{.....}
\label{li(x)exlnx}
\end{figure}

这个编译正确,这一切都很正常,但我不知道如何将图中的参考文献放在名称图的下方,我希望它被放置在(非常接近)图形或表格的参考文献的位置,而不会出现在后面的图形列表中。

抱歉,我不会说英语,我用的是翻译器。这也是我第一次在这里遇到 TeX 问题,数学中总是用问题,所以也请原谅我的写作方式。

答案1

嗯,你没有给出 MWE,所以你的问题不是很清楚。

我猜你说的“图片参考”是指一段文字,解释你从哪里得到图片,例如一篇文章或一本书。在我的示例代码中,我只写了一些文字,请将其更改为你需要的内容...

请看下面的代码:

\documentclass{article}

\usepackage{graphicx}

\begin{document}

\listoffigures
\clearpage

test See figure~\ref{fig:example} and figure~\ref{fig:exampleb}

\begin{figure}
  \centering
  \includegraphics[width=9cm]{example-image-a}
  \caption{Example Image from package \texttt{MWE}}
  Example for an reference text
  \label{fig:example}
\end{figure}

test See figure~\ref{fig:examplec} and figure~\ref{fig:exampleb}

\begin{figure}
  \centering
  \includegraphics[width=9cm]{example-image-b}
  \caption{Example Image b from package \texttt{MWE}}
  Example for an reference text with more text to show the effect before 
  the command \texttt{label}.
  \label{fig:exampleb}
\end{figure}

test See figure~\ref{fig:exampleb} and figure~\ref{fig:examplec}

\begin{figure}
  \centering
  \includegraphics[width=9cm]{example-image-a}
  \caption{Example Image c from package \texttt{MWE}}
  \label{fig:examplec}
  Example for an reference text with more text to show the effect.
\end{figure}

\end{document}

\caption我在命令和之间写了“参考文本的示例......”\label或者看到之后的最后一张图\label

在图表中,您只能看到标题,在打印图像的地方,您可以看到附加的参考文本,我想这正是您所希望的……

参见图表列表:

图片列表

查看包含两幅带有“参考文本”的图片的页面:

带有参考文字的图像

相关内容