-
Notifications
You must be signed in to change notification settings - Fork 3
/
presentation.tex
131 lines (120 loc) · 4.21 KB
/
presentation.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
%
% LaTeX Presentation Template
%
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
% "THE BEER-WARE LICENSE" (Revision 42):
% Hannes Badertscher ([email protected]) wrote this file. As long as you retain
% this notice you can do whatever you want with this stuff. If we meet some day,
% and you think this stuff is worth it, you can buy me a beer in return.
% - Hannes Badertscher
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\RequirePackage[l2tabu, orthodox]{nag} % Warnings for obsolete packages
\RequirePackage{etex} % Load e-TeX engine
\documentclass[aspectratio=43]{beamer} % 169 (16:9) or 43 (4:3)
\usepackage[utf8]{inputenc} % Always use UTF-8!
\newcommand*{\Title}{A long title}
\newcommand*{\TitleShort}{Title}
\newcommand*{\Subtitle}{Subtitle}
\newcommand*{\Author}{Hannes Badertscher \newline BSc FHO in Electrical Engineering}
\newcommand*{\AuthorShort}{H.Badertscher}
\newcommand*{\Topic}{Bereich}
\newcommand*{\Lang}{en}
\newcommand*{\Institute}{institutes/ICOM-Institute_for_Communication_System_CMYK.eps}
\newcommand*{\Background}{backgrounds/2014/Titelbild_Abend.jpg}
\newcommand*{\TocAtSection}{true}
\newcommand*{\ProgressBar}{false}
\include{header/hsrBeamerTheme}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %
\begin{document}
\frame[plain]{\titlepage}
\begin{frame}{\contentsname}
\tableofcontents
\end{frame}
\section{First section}
\begin{frame}{Itemize}
\begin{itemize}
\item This is an itemize environment
\item Nice!
\item Even sub-items are possible
\begin{itemize}
\item Wow
\begin{itemize}
\item such an
\item awesome
\end{itemize}
\item presentation!
\end{itemize}
\item The end.
\end{itemize}
\end{frame}
\begin{frame}{Enumerate}
\begin{enumerate}
\item An item
\item and another one
\item Subitems:
\begin{enumerate}
\item This
\begin{enumerate}
\item test
\end{enumerate}
\item is
\item nice
\end{enumerate}
\item The end.
\end{enumerate}
\end{frame}
\begin{frame}{Equations}
\begin{itemize}
\item Here, have an equation:
\[
\left|\int_{\Omega} Z\, d\mu\,\right|
\leq \int_{\Omega} |\,Z\,|\, d\mu
\]
\item Or something using \texttt{align}:
\begin{align*}
S_x &= \frac{\hbar}{2} \begin{pmatrix}
0 & 1 \\ 1 & 0 \end{pmatrix} &
S_y &= \frac{\hbar}{2} \begin{pmatrix}
0 & -i \\ i & 0 \end{pmatrix} &
S_z &= \frac{\hbar}{2} \begin{pmatrix}
1 & 0 \\ 0 & -1 \end{pmatrix}
\end{align*}
\end{itemize}
\end{frame}
\section{Second section}
\begin{frame}{Boxes}
\begin{HSRBox}{}
Nice framed boxes also exist
\end{HSRBox}
\begin{HSRBox}{With \dots}
or without title.
\end{HSRBox}
\end{frame}
\begin{frame}{Columns and graphics}
\begin{columns}[onlytextwidth]
\begin{column}{0.5\textwidth}
\begin{itemize}
\item Multi-col environments should be made using \texttt{columns}!
\item \emph{Never} use \texttt{minipage}'s or \texttt{multicols}.
\end{itemize}
\end{column}
\begin{column}{0.5\textwidth}
\centering
\includegraphics[width=0.8\linewidth]{backgrounds/2014/Titelbild_Sommer.jpg}
\captionof{figure}{A sample image. You don't need any floats here, just
use \texttt{captionof}.}
\end{column}
\end{columns}
\end{frame}
\section{Last section}
\begin{frame}{A nice graphic}
\centering
\input{images/timeline}
\end{frame}
\begin{frame}{The End}
\centering
\LARGE That's all folks!
\end{frame}
\end{document}
% % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % % %