可能重复:
删除可点击的交叉引用和超链接周围的难看边框
\href
当我使用包中的宏时,我不会显示超链接下划线装饰hyperref
。
我会得到类似的效果html-css 样式="文本修饰:无",如果可能的话。
答案1
用于\hypersetup{pdfborder = 0 0 0}
禁用该框:
\documentclass{article}
\usepackage{hyperref}
\hypersetup{pdfborder = 0 0 0}
\begin{document}
\href{http://www.google.com}{The Google}
\end{document}