-
Notifications
You must be signed in to change notification settings - Fork 10
My Beamer Handout
Ricky Woo edited this page Sep 30, 2017
·
1 revision
\documentclass{article}
\usepackage{graphicx}
\usepackage{beamerarticle}
\setjobnamebeamerversion{bioinfo-handout}
%\input{bioinfo-beamer-handout.tex}
\setbeamertemplate{navigation symbols}{}
\usetheme{Warsaw}
\usepackage{ngerman}
\beamersetuncovermixins{\opaqueness<1>{25}}{\opaqueness<2->{15}}
\begin{document}
\title{Beamer Class Warsaw}
\author{Donald Duck\\
School of Disney}
\date{}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
\section{Section 1}
\begin{frame}
\frametitle{Title}
Each frame should have a title.
\end{frame}
\subsection{Subsection 1.1 }
\begin{frame}
Without title somethink is missing.
\end{frame}
\section{Section 2}
\subsection{Lists I}
\begin{frame}\frametitle{unnumbered lists}
\begin{itemize}
\item Introduction to \LaTeX
\item Course 2
\item Termpapers and presentations with \LaTeX
\item Bioinfomatics class
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{lists with pause}
\begin{itemize}
\item Introduction to \LaTeX \pause
\item Course 2 \pause
\item Termpapers and presentations with \LaTeX \pause
\item Beamer class
\end{itemize}
\end{frame}
\subsection{Lists II}
\begin{frame}
\frametitle{numbered lists}
\begin{enumerate}
\item Introduction to \LaTeX
\item Course 2
\item Termpapers and presentations with \LaTeX
\item Beamer class
\end{enumerate}
\end{frame}
\begin{frame}
\frametitle{numbered lists with pause}
\begin{enumerate}
\item Introduction to \LaTeX \pause
\item Course 2 \pause
\item Termpapers and presentations with \LaTeX \pause
\item Beamer class
\end{enumerate}
\end{frame}
\section{Section 3}
\subsection{Tables}
\begin{frame}
\frametitle{Tables}
\begin{tabular}{|c|c|c|}
\hline
\textbf{Date} & \textbf{Instructor} & \textbf{Title} \\
\hline
WS 04/05 & Sascha Frank & First steps with \LaTeX \\
\hline
SS 05 & Sascha Frank & \LaTeX \ Course serial \\
\hline
\end{tabular}
\end{frame}
\begin{frame}
\frametitle{Tables with pause}
\begin{tabular}{c c c}
A & B & C \\
\pause
1 & 2 & 3 \\
\pause
A & B & C \\
\end{tabular}
\end{frame}
\section{Section 4}
\subsection{blocs}
\begin{frame}
\frametitle{blocs}
\begin{block}{title of the bloc}
bloc text
\end{block}
\begin{exampleblock}{title of the bloc}
bloc text
\end{exampleblock}
\begin{alertblock}{title of the bloc}
bloc text
\end{alertblock}
\end{frame}
\section{Section 5}
\subsection{split screen}
\begin{frame}
\frametitle{splitting screen}
\begin{columns}
\begin{column}{5cm}
\begin{itemize}
\item Beamer
\item Beamer Class
\item Beamer Class Latex
\end{itemize}
\end{column}
\begin{column}{5cm}
\begin{tabular}{|c|c|}
\hline
\textbf{Instructor} & \textbf{Title} \\
\hline
Sascha Frank & \LaTeX \ Course 1 \\
\hline
Sascha Frank & Course serial \\
\hline
\end{tabular}
\end{column}
\end{columns}
\end{frame}
\subsection{Graphics}
\begin{frame}
\frametitle{graphics in latex beamer class}
\begin{figure}
\includegraphics[scale=0.5]{PIC1}
\caption{show an example picture}
\end{figure}
\end{frame}
\subsection{joining picture and lists}
\begin{frame}
\frametitle{pictures and lists in beamer class}
\begin{columns}
\begin{column}{5cm}
\begin{itemize}
\item<1-> subject 1
\item<3-> subject 2
\item<5-> subject 3
\end{itemize}
\vspace{3cm}
\end{column}
\begin{column}{5cm}
\begin{overprint}
\includegraphics<2>{PIC1}
\includegraphics<4>{PIC2}
\includegraphics<6>{PIC3}
\end{overprint}
\end{column}
\end{columns}
\end{frame}
\subsection{pictures which need more space}
\begin{frame}[plain]
\frametitle{plain, or a way to get more space}
\begin{figure}
\includegraphics[scale=0.5]{PIC1}
\caption{show an example picture}
\end{figure}
\end{frame}
\end{document}
On the way to the garden of bioinformatics.
A bioinformatics wiki for the course BI462.