我在 Matlab 中创建并标记了一个包含许多子图的图形。在 tex 文件的文本中,我需要分别引用每个子图,例如 1a) 1b)...,尽管如此,我显然只能链接整个图形,例如文本中的 1。我怎样才能将字母包含在链接中?到目前为止,我只手动更改了字母的颜色,但如果我将光标放在字母上方,我也希望有链接。
例如,我有一个包含三个子图的图,我需要讨论第一个子图:
\documentclass[%
reprint,
superscriptaddress,
amsmath,amssymb,
aps,
prb,
]{revtex4-2}
\hypersetup{
colorlinks = true,
citecolor = blue,
linkcolor = blue}
\begin{document}
\begin{figure}[t]
\centering
\includegraphics[width=1\textwidth]{img.eps}
\caption{(a) subplot1 (b) subplot2 (c) subplot3}
\label{fig:figure}
\end{figure}
Figure \ref{fig:figure}{\color{blue}{(a)}
\end{document}
谢谢你!