I want to include a hyperlink button on a slide that is completely covered by a figure. If I do the following:
\begin{frame}[plain]
\begin{center}
\includegraphics[width=3in]{map}
\end{center}
\begin{flushright}
\hyperlink{inthispaper}{\beamerreturnbutton{Back}}
\end{flushright}
\end{frame}
the button will not appear on the slide. Is there an environment that allows the button to float on the slide? Or is there a way to set the position of the button exactly?
Best Answer
You can use the textpos package to place material at absolute positions on a page:
The line
\PassOptionsToPackage{demo}{graphicx}
replaces the actual figure with a black rectangle; do not use that line in your actual code.