-
Notifications
You must be signed in to change notification settings - Fork 6
/
presentation.tex
68 lines (52 loc) · 1.26 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
% !TeX program = lualatex
\documentclass[
american,
sections numbered,
usenames,
xcolor=dvipsnames,
aspectratio=169,
]{beamer}
\mode<presentation>
\usepackage{babel}
\usepackage[babel]{microtype}
\usepackage[babel]{csquotes}
\usepackage[american]{isodate}
\usepackage[T1]{fontenc}
\usepackage{FiraMono}
\usetheme[progressbar=frametitle]{metropolis}
%%% GRAPHICS %%%
\usepackage{graphicx}
\usepackage{pgfplots}
\usepackage{tikz}
%%% MATH & SCIENCE %%%
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{amsfonts}
\usepackage{amsthm}
\usepackage{siunitx}
\usepackage{bm}
\usepackage{dsfont}
\usepackage{mathtools}
%%% FLOATS %%%
\usepackage{booktabs}
\usepackage{tabularx}
%\usepackage{biblatex}
%\bibliography{literature.bib}
\input{setup-colors.tex}
\input{setup-beamer.tex}
\input{setup-math.tex}
\input{setup-plots.tex}
\title{Title of your Presentation}
\author{Author 1\inst{1}, Author 2\inst{1}, and Author 3\inst{2}}
\institute[]{%
\inst{1} Institute for Science, University Name, Country\\
\inst{2} Department of Science, Different University, Country
}
\date{Date or Conference Name}
\titlegraphic{\includegraphics[height=.17\textheight]{logo.png}}
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\input{example-content.tex}
\end{document}