Hyperref 包不制作彩色边框

Hyperref 包不制作彩色边框

我正在用 overleaf 编写 latex 代码,我想用 hyperref 包创建超链接。通过谷歌搜索,我了解到默认情况下(或设置 colorlinks=false)应该在链接周围添加边框。但是,这对我来说不起作用。这是我的代码:

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[colorlinks=false]{hyperref}
\usepackage{amsthm}

\title{Test}

\begin{document}

\newtheorem{theorem}{Theorem}

\maketitle

\section{Introduction}

\begin{theorem} \label{theorem1}
Famous theorem
\end{theorem}

\newpage

Using Theorem \ref{theorem1}.

\end{document}

答案1

这完全取决于您使用的 PDF 查看器。有些查看器会显示此边框,而有些则不会。

这是当您使用 Adob​​e Acrobat Reader 查看文档时,该框可见的情况。 Adobe

这是当您使用 Brave 浏览器查看文档时,框消失的情况。 勇敢的

另外,如果您打印文档,则不会打印此框。如果您想突出显示链接,我认为最好使用颜色或下划线或两者兼而有之。

相关内容