乳胶中的文本后面出现数字

乳胶中的文本后面出现数字

当我点击文章中的图表引用时,会直接显示其标题,而不是整个图表,然后我必须向上才能看到图表。我使用了它:

\documentclass[twocolumn,amsmath,showkeys,prb]{revtex4-1}
\usepackage{graphicx}
and 
\begin{figure}
\centering
\includegraphics[width=8.5cm,keepaspectration=true]{./image}
\caption{image.png}
\label{fig:exp_diag}
\end{figure}

感谢您的帮助。

答案1

通常,软件包caption或包hypcap可以修复该问题。起点:

\documentclass[twocolumn,amsmath,showkeys,prb]{revtex4-1}
\usepackage{caption}
\usepackage{graphicx}
\usepackage{hyperref}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=8.5cm,keepaspectratio]{example-image-a}
\caption{image.png}
\label{fig:exp_diag}
\end{figure}

Ref: \ref{fig:exp_diag}
\end{document}

相关内容