\documentclass{beamer} %%%%% title %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \title[]{Scientific Computing --- Bootstrap methods} \author[]{Jan Benda} \institute[]{Neuroethology} \date[]{WS 16/17} \titlegraphic{\includegraphics[width=0.3\textwidth]{UT_WBMW_Rot_RGB}} %%%%% beamer %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \mode { \usetheme{Singapore} \setbeamercovered{opaque} \usecolortheme{tuebingen} \setbeamertemplate{navigation symbols}{} \usefonttheme{default} \useoutertheme{infolines} % \useoutertheme{miniframes} } %\AtBeginSection[] %{ % \begin{frame} % \begin{center} % \Huge \insertsectionhead % \end{center} % \end{frame} %} \setbeamertemplate{blocks}[rounded][shadow=true] \setcounter{tocdepth}{1} %%%%% packages %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage[english]{babel} \usepackage{amsmath} \usepackage{bm} \usepackage{pslatex} % nice font for pdf file %\usepackage{multimedia} \usepackage{dsfont} \newcommand{\naZ}{\mathds{N}} \newcommand{\gaZ}{\mathds{Z}} \newcommand{\raZ}{\mathds{Q}} \newcommand{\reZ}{\mathds{R}} \newcommand{\reZp}{\mathds{R^+}} \newcommand{\reZpN}{\mathds{R^+_0}} \newcommand{\koZ}{\mathds{C}} %%%% graphics %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{graphicx} \newcommand{\texpicture}[1]{{\sffamily\small\input{#1.tex}}} %%%%% listings %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \usepackage{listings} \lstset{ basicstyle=\ttfamily, numbers=left, showstringspaces=false, language=Matlab, commentstyle=\itshape\color{darkgray}, keywordstyle=\color{blue}, stringstyle=\color{green}, backgroundcolor=\color{blue!10}, breaklines=true, breakautoindent=true, columns=flexible, frame=single, captionpos=b, xleftmargin=1em, xrightmargin=1em, aboveskip=10pt } \graphicspath{{figures/}} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{document} \begin{frame}[plain] \frametitle{} \vspace{-1cm} \titlepage % erzeugt Titelseite \end{frame} \subsection{Bootstrap distribution} %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \begin{frame} \frametitle{Sampling distribution} \includegraphics[width=1\textwidth]{srs1} \end{frame} \begin{frame} \frametitle{Theoretical sampling distribution} \includegraphics[width=1\textwidth]{srs2} \end{frame} \begin{frame} \frametitle{Bootstrap distribution} \includegraphics[width=1\textwidth]{srs3}\\[1ex] \begin{itemize} \item Resampling with replacement. \item Size of resample equals size of original sample. \end{itemize} \end{frame} \end{document}