I am trying to make a presentation but I have some problems at the bottom of slides
1st part (name and university is ok)
2nd part I want only the title
3rd part I want only the slide numeration .../...
how can I correct to get it ?
Code: Select all
\documentclass[11pt, compress]{beamer}
\usepackage{beamerthemeshadow}
\usepackage[portuguese]{babel}
\usepackage[applemac]{inputenc}
\usepackage{amsmath,amssymb,amsfonts,textcomp,setspace,graphicx,lipsum,hanging}
\usepackage[bottom]{footmisc}
\usepackage[none]{hyphenat}
\usetheme{CambridgeUS}
\usecolortheme{dove}
\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{SUBTITLE}
\author{Paulo Sousa}
\institute {Oporto University}
\date{\footnotesize{january 2013}}
\begin{document}
\setbeamertemplate{caption}[numbered]
\frame{\titlepage}
\frame{\tableofcontents}
\section{Introdução}
\begin{frame}
\frametitle{Introdução}
Descrever sucintamente o que perguntas no inquérito? \\ Descrever o público alvo
\begin{itemize}
\item turma I de 11.º ano com 27 alunos
\item ...
\end{itemize}
\end{frame}
\section{Referências Bibliográficas}
\begin{frame}
\frametitle{Referências 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}