Document Classesbeamer | Page Numbering Problem

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
beamme
Posts: 9
Joined: Thu May 26, 2011 1:03 pm

beamer | Page Numbering Problem

Post by beamme »

Hello,

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}
Thanks for any suggestions :)

Beamme
Last edited by beamme on Sat Jul 02, 2011 11:49 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

beamme
Posts: 9
Joined: Thu May 26, 2011 1:03 pm

beamer | Page Numbering Problem

Post by beamme »

Okay I found a solution, in case other people wonder about this ;)
With the package

Code: Select all

\usepackage{textpos}

I had to create the titlepage like this:

Code: Select all

 
\begin{frame}\vspace{1cm}
   \begin{minipage}[b]{0.6\linewidth}
      \maketitle
   \end{minipage}
   \begin{textblock*}{2cm}(7cm,-5.0cm)
      \includegraphics[width=2cm]{figurename}
   \end{textblock*}
\end{frame}
and then it looked exactly the way I like. With the page numbers and everything. :)
Post Reply