4

I would like to know how I can remove these red boxes that appeared in my document after inserting \hyperref.

enter image description here

Boa tarde. Gostaria de saber como posso retirar estas caixas em vermelho que apareceram no meu documento, após inserir o \hyperref.

egreg
  • 1,121,712

1 Answers1

6

You can remove the boxes (not every PDF viewer draws them) by adding

\hypersetup{pdfborder=0 0 0}

Example

\documentclass{amsbook}
\usepackage{hyperref}
\hypersetup{pdfborder=0 0 0}

\begin{document}

\frontmatter
\tableofcontents

\mainmatter

\chapter{Title}

\section{Title}

Some text

\end{document}

enter image description here

egreg
  • 1,121,712