我尝试以“图 1”的形式引用我的图形,但是使用 \autoref 时它引用的图形却像“图 1”一样。
\begin{figure}[t]
\centering
\includegraphics[scale=0.3]{Images/Figure-1.png}
\caption{foo}\label{fig:Fig-1}
\end{figure}
Then the text:
bla bla {See \autoref{fig:Fig-1}}
我需要显示“图 1”之类的参考资料,而不是“图 1”。我该如何解决?谢谢。
答案1
hyperref
\<type>autorefname
与<type>
您正在引用的内容(例如equation
、 或)一起使用figure
来确定名称(如果存在,则返回\<type>name
)。您可以简单地重新定义它:
\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}
\renewcommand\figureautorefname{Fig.\@} % `\@` added for correct spacing
\begin{document}
\begin{figure}[t]
\centering
\includegraphics[scale=0.3]{example-image-duck}
\caption{foo}\label{fig:Fig-1}
\end{figure}
Then the text:
bla bla {See \autoref{fig:Fig-1}}
\end{document}