is it possible to use a beamerbutton for presentations which would open a browser and a given URL?
Asked
Active
Viewed 5.6k times
1 Answers
47
You can use any linking command from hyperref to make links from beamer buttons. For example the following uses \href to link a button to this question:
\documentclass{beamer}
\begin{document}
\begin{frame}
\href{http://tex.stackexchange.com/q/20800/5701}{\beamergotobutton{Link}}
\end{frame}
\end{document}
\href, i.e. if you're not using a button, how to make the text blue and underlined. – DanielSank Aug 22 '17 at 06:54