我正在用 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}