% am121 beamer slides template, for extreme optimization presentations % created by Chris Coey for am121 Spring 2012 % see LaTeX assignment template for useful code snippets % beamer is a LaTeX class used for creating presentations % group members and title goes in the title page section below % body of your presentation goes in the slides section below % remove bibliography section if not using sources % remove appendix section if not using additional support slides % change the theme below if you want to experiment, but make sure everything formats correctly \documentclass{beamer} %\usepackage{bm} % For typesetting bold math \usepackage{graphicx,amsmath,booktabs} \usepackage{natbib} % citep and citet \renewcommand{\bibsection}{\subsubsection*{\bibname } } \bibpunct[:]{(}{)}{;}{a}{}{,} %\usetheme{default} \usepackage{beamerthemesplit} %\usetheme{Madrid} % My favorite! %\usetheme{Boadilla} % Pretty neat, soft color %\usetheme{Bergen} % This template has navigation on the left %\usetheme{Frankfurt} % Similar to default with extra region at top %\usecolortheme{seahorse} % Simple and clean template %\usetheme{Darmstadt} %\usetheme{Warsaw} %\setbeamertemplate{footline}[page number] %\setbeamercovered{transparent} \setbeamercovered{invisible} \setbeamertemplate{navigation symbols}{} % Removes navigation symbols %\logo{\includegraphics[height=0.6cm]{yourlogo.eps}} % To include logo % parameters \title[Short title of the presentation]{Long title of the presentation} \author{names} % group members \institute[Harvard] { {\emph{\{email1, email2, email3\}@college.harvard.edu}} % email addresses } \date{\today} % \today will show current date % title page \begin{document} \begin{frame} \titlepage \end{frame} \begin{frame}{Outline} \tableofcontents \end{frame} % slides \section{Section title} \begin{frame}{Frame 1 title} things \end{frame} \begin{frame}{Frame 2 title} more things \end{frame} % bibliography % you need to use a .bib file in the same folder as the tex file, use a program such as BibDesk for reference management \begin{frame}[allowframebreaks]{Bibliography} \bibliographystyle{alpha} \bibliography{bibfile.bib} \end{frame} % end \begin{frame} \centerline{The End} \end{frame} % appendix \appendix \section{\appendixname} \frame{\tableofcontents} \subsection{Additional material} \frame{Omitted in main talk} \end{document}