标签和参考图

标签和参考图

正如我们的$\label{eq01}$方程式和$ref{eq01}$,在插入图像后我提到了标签?以及如何引用图?

我插入的用于插入图的代码LaTeX是:

\begin{figure}
 \centering
 \includegraphics[scale=0.40]{d2spherical.png}
 % d2spherical.png: 800x300 pixel, 72dpi, 18x8 cm, bb=0 0 1142 479
 \caption{Solution of the spherical equation for $D=2$}
 \label{Fig:5}
\end{figure}

请注明参考和标签位置。

答案1

引用按照下面的 MWE 进行。

关于您的示例的一些评论:

  • 正如@cmhughes所说,您应该在\includegraphics命令中省略“ .png”。它将自行搜索最佳文件扩展名。如果您稍后要进行一些图形转换,则不必更改它。(但这当然不是一个错误......)
  • 在您的文本中,您正在内部进行标记$$。这没有意义,因为您没有任何方程编号可供参考。

% arara: pdflatex
% arara: pdflatex

\documentclass{article}
\usepackage[%
    ,demo
    ]{graphicx}

\begin{document}
This is my reference to the figure \ref{fig:Figure} and this the reference to the equation \ref{eq:Equation}.
%
\begin{figure}
 \centering
 \includegraphics[scale=0.40]{d2spherical}
 \caption{Solution of the spherical equation for $D=2$}
 \label{fig:Figure}
\end{figure}
%
\begin{equation}
a^2+b^2=c^2
\label{eq:Equation}
\end{equation}
%
\end{document}

相关内容