174 wiersze
3.3 KiB
TeX
174 wiersze
3.3 KiB
TeX
\documentclass{beamer}
|
|
%\documentclass[handout]{beamer}
|
|
|
|
%%% Deutsche Beschriftungen
|
|
\usepackage[utf8]{inputenc}
|
|
\usepackage{german}
|
|
|
|
\definecolor{links}{HTML}{2A1B81}
|
|
\hypersetup{colorlinks,linkcolor=,urlcolor=links}
|
|
|
|
\usepackage{beamerthemeshadow}
|
|
%\usepackage{my_style/beamertheme}
|
|
\beamersetuncovermixins{\opaqueness<1>{25}}{\opaqueness<2->{15}}
|
|
|
|
\usepackage{multicol}
|
|
|
|
|
|
\begin{document}
|
|
\title{Präsentationstitel}
|
|
\author{Vorname Nachname}
|
|
\date{\today}
|
|
|
|
\frame{\titlepage}
|
|
|
|
\frame{\frametitle{Table of contents}\tableofcontents}
|
|
|
|
|
|
\section{Section no.1}
|
|
\frame{\frametitle{Title}
|
|
Each frame should have a title.
|
|
}
|
|
\subsection{Subsection no.1.1 }
|
|
\frame{
|
|
Without title somethink is missing.
|
|
}
|
|
|
|
|
|
\section{Section no. 2}
|
|
\subsection{Lists I}
|
|
\frame{\frametitle{unnumbered lists}
|
|
\begin{itemize}
|
|
\item Introduction to \LaTeX
|
|
\item Course 2
|
|
\item Termpapers and presentations with \LaTeX
|
|
\item Beamer class
|
|
\end{itemize}
|
|
}
|
|
|
|
\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}
|
|
}
|
|
|
|
\subsection{Lists II}
|
|
\frame{\frametitle{numbered lists}
|
|
\begin{enumerate}
|
|
\item Introduction to \LaTeX
|
|
\item Course 2
|
|
\item Termpapers and presentations with \LaTeX
|
|
\item Beamer class
|
|
\end{enumerate}
|
|
}
|
|
\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}
|
|
}
|
|
|
|
\section{Section no.3}
|
|
\subsection{Tables}
|
|
\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}}
|
|
|
|
|
|
\frame{\frametitle{Tables with pause}
|
|
\begin{tabular}{c c c}
|
|
A & B & C \\
|
|
\pause
|
|
1 & 2 & 3 \\
|
|
\pause
|
|
A & B & C \\
|
|
\end{tabular} }
|
|
|
|
|
|
\section{Section no. 4}
|
|
\subsection{blocs}
|
|
\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}
|
|
}
|
|
|
|
\section{Section no. 5}
|
|
\subsection{split screen}
|
|
|
|
\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}
|
|
}
|
|
|
|
%\subsection{Pictures}
|
|
%\frame{\frametitle{pictures in latex beamer class}
|
|
%\begin{figure}
|
|
%\includegraphics[scale=0.5]{PIC1}
|
|
%\caption{show an example picture}
|
|
%\end{figure}}
|
|
%
|
|
%\subsection{joining picture and lists}
|
|
%
|
|
%\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{document}
|