2

Possible Duplicate:
Remove ugly borders around clickable crossreferences and hyperlinks

I would not show the hyperlink underline decoration when I use \href macro from hyperref package.

I would obtain an effect similar to html-css style="text-decoration: none", if it is possibile.

simotrone
  • 23
  • 1
  • 3

1 Answers1

5

Use \hypersetup{pdfborder = 0 0 0} to disable the box:

\documentclass{article}
\usepackage{hyperref}

\hypersetup{pdfborder = 0 0 0}

\begin{document}
\href{http://www.google.com}{The Google}
\end{document}
Peter Grill
  • 223,288