-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
58 lines (43 loc) · 1 KB
/
main.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
\documentclass[12pt,ngerman]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{booktabs}
\usepackage{babel}
\usepackage{graphicx}
\usepackage{csquotes}
\usepackage{xcolor}
\usepackage{listings}
\usepackage{eso-pic}
\usepackage{xcolor}
\usepackage{presentation}
\usefonttheme{}
\author{Robert Müller}
\title{Presentation Title}
\institute{FOM Hochschule für Oekonomie \& Management}
\begin{document}
\begin{frame}
\maketitle
\end{frame}
\newcommand\AtPagemyUpperLeft[1]{\AtPageLowerLeft{%
\put(\LenToUnit{0.925\paperwidth},\LenToUnit{0.91\paperheight}){#1}}}
\AddToShipoutPictureFG{
\AtPagemyUpperLeft{{\includegraphics[width=1.cm,keepaspectratio]{logo.png}}}
}%
\begin{frame}
\frametitle{Title}
\begin{itemize}
\item Some
\item Itemized
\item Points
\end{itemize}
\end{frame}
\begin{frame}
\frametitle{With Bibtex Cites}
Something interesting\cite{Example}
\end{frame}
\begin{frame}
\frametitle{Sources}
\bibliographystyle{abbrv}
\bibliography{literature}
\end{frame}
\end{document}