I have a problem with the hyperlink inside a presentation made with beamer.
In few words, in the pdf file, if I try to open an hyperlink it corresponds to the wrong page.
For instance in the following code, the hyperlink summary refers to theorem. What do I wrong?
Thank you in advance
Code: Select all
\documentclass[9pt]{beamer}
\usepackage{amsmath,amssymb,amsfonts}
\usepackage{amsthm}
\usepackage{graphicx}
\usepackage{graphics}
\usepackage{url}
\usepackage{hyperref}
\usepackage{setspace}
\graphicspath{{figure/}}
\DeclareGraphicsExtensions{.eps,.pdf,.jpg,.gif}
\newenvironment{myslide}[1]
{\begin{frame}{\begin{center}#1\vskip-10pt\end{center}}}{\end{frame}}
\mode<presentation>
{
\usetheme[headheight=0.005cm,footheight=0.001cm]{Goettingen}
\usecolortheme{lily}
\setbeamertemplate{theorem}[ams style]
\setbeamertemplate{theorems}[numbered]
}
\setbeamertemplate{footline}[frame number]
\setbeamersize{text margin left=0.15cm,text margin right=0.15cm}
\begin{document}
\title[MyPresentation]{MyPresentation}
\author[Nedo]{Nedo}
\date{\today}
\begin{frame}
\titlepage
\end{frame}
\section*{Summary}
\begin{myslide} {Summary}
\begin{itemize}
\item t
\item t
\end{itemize}
\end{myslide}
\section*{Theorems}
\begin{myslide} {Theorems}
\end{myslide}
\section*{References}
\begin{myslide} {References}
\bibliographystyle{plain}
\bibliography{bibliography/my_bibliography}
\end{myslide}
\end{document}