I have included a figure in my presentation's title page. However, when I use the command \setbeamertemplate{footline}[frame number] to get page numbering, the figure disappears. Is there a way to fix this? This is my code:
Code: Select all
\documentclass[xcolor=svgnames, handout]{beamer}
\usecolortheme[named=MidnightBlue]{structure}
\usetheme{Goettingen}
\usepackage{array}
\usepackage{wrapfig}
\usepackage{graphics}
\usepackage{graphicx}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsthm}
\setbeamertemplate{navigation symbols}{}
\setbeamertemplate{footline}[frame number]
\mode<presentation>
{
\usetheme{Goettingen}
\setbeamercovered{transparent}
}
\title{my title..}
\subtitle{..}
\author{me}
\date{\footnotesize{\today}}
\begin{wrapfigure}{r}{0.47\textwidth}
\vspace{60pt}
\begin{center}
\includegraphics[width=0.20\textwidth]{figurename}
\end{center}
\end{wrapfigure}
\beamerdefaultoverlayspecification{}
\begin{document}
\bibliographystyle{plainnat}
\begin{frame}
\titlepage
\end{frame}

Beamme