无法在 AMSART 中生成超链接周围的彩色框

无法在 AMSART 中生成超链接周围的彩色框

有人告诉我使用hyperref包装来生产彩色盒子\引用\参考, 和\eqref。这样,我就可以这样做:

在此处输入图片描述

但实际上,它对我来说不起作用: 在此处输入图片描述

为什么呢?请允许我先介绍一下我的前言:

\documentclass[12pt]{amsart}

\usepackage[left=3cm,right=3cm,top=3cm,bottom=2cm]{geometry}
\usepackage{CJKutf8,mathpazo,upgreek,mathrsfs}
\usepackage{amssymb,amsthm,mathtools,mathabx,physics}
\usepackage{enumerate,nicefrac,relsize}
\usepackage{cases,csquotes}
\usepackage{tikz}
\usetikzlibrary{matrix,decorations.pathreplacing}

\usepackage[colorlinks,linkcolor=blue,citecolor=red]{hyperref}

\setcounter{tocdepth}{1}
\numberwithin{equation}{section}
\newtheorem{thm}{Theorem}[section]
\newtheorem{prop}[thm]{Proposition}
\newtheorem{coro}[thm]{Corollary}
\newtheorem{lem}[thm]{Lemma}
\newtheorem*{thm*}{Theorem}
\newtheorem*{prop*}{Proposition}
\newtheorem*{coro*}{Corollary}
\newtheorem*{lem*}{Lemma}
\theoremstyle{definition}
\newtheorem{dfn}[thm]{Definition}
\newtheorem{ex}[thm]{Example}
\newtheorem{rem}[thm]{Remark}
\newtheorem{exc}[thm]{Exercise}

\begin{document}
...
\begin{prop}\label{Prop: gtt}
\begin{equation}\label{Eq: gtt}
\pdv{t}g_{ij}=2\varphi h_{ij}
\end{equation}
\end{prop}
...
The proposition below includes some consequences of proposition~\ref{Prop: gtt}, whose derivations are already explicit and complete in \cite[section 7.1]{HP96}. We simply cite them
...
\begin{thebibliography}{99}
\bibitem{HP96} Gerhard Huisken and Alexander Polden,
\textit{Geometric evolution equations for hypersurfaces}, ...
\end{thebibliography}
\end{document}

这个包和 documentclass 不太hyperref匹配吗amsart?谢谢你的帮助!

编辑。抱歉,我忘了说我通常使用 Texmaker 和 MiKTeX。

答案1

彩色框是预览器的功能,但是当链接已经有颜色时,就不会添加它们。

如果我运行您的文档时没有colorlinks启用该选项,那么这就是我在 Skim 中看到的内容。

在此处输入图片描述

但是如果我使用 Adob​​e Acrobat,我会看到

在此处输入图片描述

所以你看到了一些如果没有其他方式查看链接,预览器会添加该框(仅在屏幕上而不是打印中);其他预览器则不会。

如果我同时启用colorlinks两个预览器,显示的内容基本相同

在此处输入图片描述

相关内容