这个问题与这篇文章相关: 在图片引用处添加括号
在使用提到的宏时,如果引用是蓝色的,那么如何使用黑色括号?
我已将所有参考文献都涂上蓝色,但我发现图形参考的括号变成了蓝色,而作者和方程式参考的括号则保持黑色。
\documentclass{article}
\usepackage{hyperref}
\hypersetup{backref=true,
colorlinks=true,
linkcolor=blue,
}
\makeatletter
\renewcommand\p@figure{\expandafter\counter@parenthesize}
\newcommand\counter@parenthesize[1]{(#1)}
\makeatother
\begin{document}
\begin{figure}
\caption{X}\label{X}
\end{figure}
See Figure~\ref{X}.
\end{document}
谢谢