forked from maxnoe/TUDoBeamerTheme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpresentation.tex
80 lines (60 loc) · 1.73 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
% This example is meant to be compiled with lualatex or xelatex
% The theme itself also supports pdflatex
\PassOptionsToPackage{unicode}{hyperref}
\documentclass[aspectratio=1610, 9pt]{beamer}
% Load packages you need here
\usepackage{polyglossia}
\setmainlanguage{german}
\usepackage{csquotes}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{mathtools}
\usepackage{hyperref}
\usepackage{bookmark}
\usepackage{tikz}
\usetikzlibrary{
overlay-beamer-styles,
calc,
tikzmark,
decorations.pathreplacing
}
%\usepackage{pgfpages}
%\setbeameroption{show notes on second screen}
% load the theme after all packages
\usetheme[
%showtotalframes, % show total number of frames in the footline
]{tudo}
% Put settings here, like
\unimathsetup{
math-style=ISO,
bold-style=ISO,
nabla=upright,
partial=upright,
mathrm=sym,
}
\tikzset{fontscale/.style = {font=\relsize{#1}}}
% This adds a circle with a picture in it.
% Usage:
% \roundpic[<optional arguments>]{<radius of the cirlce [cm]>}{<picture width [cm]>}{<path_to_picture>}{x pos}{y pos}
\newcommand{\roundpic}[6][]{
\node [circle, draw, color=tugreen, minimum width = #2,
path picture = {
\node [#1] at (path picture bounding box.center) {
\includegraphics[width=#3]{#4}
};
}] at (#5,#6) {};
}
\title{\LaTeX-Beamer-Theme der TU~Dortmund}
\author[L.~Beiske]{Lukas Beiske}
\institute[E5b]{E5b Astroteilchenphysik \\ Fakultät für Physik - TU Dortmund}
\titlegraphic{\includegraphics[width=0.7\textwidth]{images/tudo-title-2.jpg}}
\begin{document}
\maketitle
\begin{frame}{Einführung}
\tableofcontents
\end{frame}
\section{Über diese Template}
\input{content/sample_slides1.tex}
\section{Fonts}
\input{content/sample_slides2.tex}
\end{document}