Is it possible to insert a command in LaTeX so that on the resulting PDF file the designated/default blank browser can be opened by a click?
Asked
Active
Viewed 955 times
2 Answers
6
When the hyperlink is clicked in the following MWE, it opens up the default browser on a blank page (about:blank):

\documentclass{article}
\usepackage{hyperref}% http://ctan.org/pkg/hyperref
\begin{document}
This is a \href{about:blank}{blank page}.
\end{document}

Here's a resource motivating the above: about URI scheme
Werner
- 603,163
-
This did it! instead of browser icon blinking on the tray it just opened. – Maesumi May 30 '12 at 19:56
5
\documentclass{article}
\usepackage{hyperref}
\begin{document}
This is an \href{http://tex.stackexchange.com/}{example link}.
\end{document}
See texdoc hyperref for more macros and options on how to change the look of such links.
Christian
- 19,238
hyperreforurl. – Werner May 30 '12 at 18:16