恢复超链接的红色框

恢复超链接的红色框

不知怎的,我无意中删除了超链接周围的红色方框。我所做的就是\usepackage{hyperref}。如何恢复这些方框?

考虑到每个人都讨厌红色框,我意识到这是一个有点讽刺的问题,但在这个特定情况下我需要它。

最小工作示例

\documentclass{article}
\usepackage{hyperref}
\usepackage{xcolor}


  \hypersetup{pdftitle={main.pdf},
        colorlinks=false,
        linkbordercolor=red,
        urlbordercolor=red,
        bookmarksnumbered=true
    }

\begin{document}

\tableofcontents



 \section{test}

 \section{test2}

This is testing hyperref


\end{document}

在此处输入图片描述

答案1

您可以按如下方式进行操作 -

\documentclass{article}
\usepackage{hyperref}
\usepackage{xcolor}


\hypersetup{pdftitle={main.pdf},
    colorlinks=false,
    linkbordercolor=red
}

\begin{document}

    \tableofcontents



    \section{test}

    \section{test2}

    This is testing hyperref


\end{document}

结果如下 -

在此处输入图片描述

这就是你想要的。对吧?如果问题仍然存在,请尝试其他查看器,我在 Mac 默认查看器(“预览”)中看不到红色方框。Adobe Reader 对我来说很管用。老实说,我不知道为什么我无法在预览中看到它们。

如需更多选项——请参阅这里

相关内容