答案1
\hyperref[<label>]{... \ref*{<label>} ...}
您可以使用或的组合手动设置超链接\autoref{<label>}
。
下面的例子强调了这一点:
\documentclass{article}
\usepackage{hyperref}
\hypersetup{
colorlinks
}
\begin{document}
\begin{figure}
\caption{A figure}\label{fig:first}
\caption{Another figure}\label{fig:second}
\end{figure}
See \hyperref[fig:first]{Figure~\ref*{fig:first}} and~\ref{fig:second}.
Alternatively, see \autoref{fig:first} and~\ref{fig:second}.
\end{document}
带星号的版本\ref*
会删除所有超链接,而这正是您想要避免的\hyperref
。