I am trying to insert PDF and XLS files into beamer presentation. The idea is in slide / frame 4 I need to put
- a 'link' to open a certain PDF file and then get back to presentation
- a 'link' to open a certain XLS file and then get back to presentation
- a 'link' to open a certain internet page and then get back to presentation (do not work clicking on it)
Code: Select all
\documentclass[11pt, compress, spanish]{beamer}
\usepackage{beamerthemeshadow}
\usepackage[spanish]{babel}
\usepackage[applemac]{inputenc}
\usepackage{amsmath,amssymb,amsfonts,textcomp,setspace,graphicx,lipsum,hanging,url}
\usepackage[bottom]{footmisc}
\usepackage[none]{hyphenat}
\usetheme{Warsaw}
\expandafter\def\expandafter\insertshorttitle\expandafter{%
\insertshorttitle\hfill%
\insertframenumber\,/\,\inserttotalframenumber}
\setbeamertemplate{footnote}{%
\hangpara{0.25cm}{1}%
\makebox[0.25cm][l]{\insertfootnotemark}\footnotesize\insertfootnotetext\par%
}
\renewcommand*{\footnoterule}{}
\title{TITLE}
\subtitle{...}
\author{name of author}
\institute {...}
\date{\footnotesize{29 enero 2013}}
\begin{document}
\setbeamertemplate{caption}[numbered]
\frame{\titlepage}
\frame{\tableofcontents}
\section{Introducción}
\begin{frame}
\frametitle{Introducción}
...fazer a introdução
\end{frame}
\begin{frame}
\frametitle{Introducción}
\begin{block}{...}
\begin{itemize}
\item (open the pdf file)
\item (open the xls file)
\item \url{http://www.google.com}
\end{itemize}
\end{block}
\end{frame}
\section{Referencias Bibliográficas}
\begin{frame}
\frametitle{Referencias Bibliográficas}
\begin{thebibliography}{6}
\bibitem{ref1} AUTOR (ano) {\em título} ...
\bibitem{ref2} AUTOR (ano) {\em título} ...
\bibitem{ref3} AUTOR (ano) {\em título} ...
\end{thebibliography}
\end{frame}
\end{document}