我正在使用该hyperref
包,参考编号周围有红色边框,引用框(例如 [4])有绿色阴影。这里有一个简化的文档,它就是这样做的。
\documentclass[12pt,oneside]{article}
\usepackage{url}
\usepackage{hyperref}
\begin{document}
\section{Example Document for SO Question}
\begin{equation}
\label{famous_equation}
E = m c^{2}
\end{equation}
This~\ref{famous_equation} is a very famous equation. It is believed to originate from Einstein~\cite{einstein}.
\bibliographystyle{ieeetr}
\bibliography{temp}
\end{document}
如何删除参考编号周围的方框和引用标记的阴影?
答案1
该hyperref
包为 URL 和内部“链接”(如引文或公式参考)提供超链接。这就是导致引文等上的额外标记的原因。我只希望 URL 具有超链接,因此根据 muzimuzhi Z 的评论,我声明
\usepackage[hidelinks]{hyperref}
在序言中。