删除图片标题中的超链接

删除图片标题中的超链接

期刊编辑要求我删除所有图片标题中的蓝色突出显示(即超链接)。以下 MWE 生成以下输出(前提是卡通狮子文件保存在工作文件夹中)。

\documentclass{article}
\usepackage{graphicx}
\usepackage{hyperref}
\hypersetup{
  colorlinks = true,
  citecolor = blue,
  linkcolor = blue,
  urlcolor = blue}

\begin{document}

\begin{figure}
\includegraphics[width=0.5\textwidth,keepaspectratio]{ctanlion.eps} 
\caption{CTAN lion draw­ing by Duane Bibby; thanks to www.ctan.org}
\label{fig:Figure1}
\end{figure}

\begin{figure}
\includegraphics[width=0.5\textwidth,keepaspectratio]{ctanlion.eps} 
\caption{Same as Fig~\ref{fig:Figure1}}
\label{fig:Figure2}
\end{figure}

\end{document}

在此处输入图片描述

红色注释是手动添加到乳胶输出顶部的,以便更好地解释我的请求。

答案1

在标题中(或其他地方)将 \ref{} 替换为 \ref*{} 即可。

相关内容