Latex 引用类型而不仅仅是数字

Latex 引用类型而不仅仅是数字,latex,Latex,例如,当我想引用一个方程式时,我会执行以下操作: \begin{align} R= \frac{c * \Delta T}{2} \label{eqn:Range} \end{align} Now I want to refer to \ref{eqn:Range}. \begin{figure}[t] \centering \includegraphics[width=0.7\textwidth]{Example} \caption{Example

例如,当我想引用一个方程式时,我会执行以下操作:

\begin{align}
    R= \frac{c * \Delta T}{2}
    \label{eqn:Range}
\end{align}

Now I want to refer to \ref{eqn:Range}.
\begin{figure}[t]
    \centering
    \includegraphics[width=0.7\textwidth]{Example} 
    \caption{Example caption}
    \label{fig:ExampleRef}
\end{figure}{}
然后输出如下所示:

\begin{align}
    R= \frac{c * \Delta T}{2}
    \label{eqn:Range}
\end{align}

Now I want to refer to \ref{eqn:Range}.
\begin{figure}[t]
    \centering
    \includegraphics[width=0.7\textwidth]{Example} 
    \caption{Example caption}
    \label{fig:ExampleRef}
\end{figure}{}
现在我想谈谈3.4

我希望输出已经是:

现在我想参考方程3.4

不用我手工写方程

表格和数字也是如此。 特别是对于数字,我想知道是否有更多的可能性显示参考。 例如:

\begin{align}
    R= \frac{c * \Delta T}{2}
    \label{eqn:Range}
\end{align}

Now I want to refer to \ref{eqn:Range}.
\begin{figure}[t]
    \centering
    \includegraphics[width=0.7\textwidth]{Example} 
    \caption{Example caption}
    \label{fig:ExampleRef}
\end{figure}{}
我希望能够显示标题:图1.1:示例标题


谢谢您的帮助。

这听起来像是克利夫Ref软件包的工作:

\documentclass{article}

\usepackage{amsmath}
\usepackage{graphicx}
\usepackage[noabbrev]{cleveref}

\begin{document}
\begin{align}
    R= \frac{c * \Delta T}{2}
    \label{eqn:Range}
\end{align}

Now I want to refer to \cref{eqn:Range}.


\begin{figure}[t]
    \centering
    \includegraphics[width=0.7\textwidth]{example-image-duck} 
    \caption{Example caption}
    \label{fig:ExampleRef}
\end{figure}

\cref{fig:ExampleRef}
\end{document}

请看一下cleveref软件包谢谢。我可以在cleveref的文档中看到任何包含标题的内容。我是否监督过它,或者我需要另一个程序包吗?”Mez重复标题说明(但请仔细考虑这是否是个好主意,重复这么多的信息会大大降低文档的信息噪音水平)。