-
Notifications
You must be signed in to change notification settings - Fork 0
/
presentation.tex
77 lines (62 loc) · 1.93 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
\documentclass{beamer}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[greek,english]{babel}
\usepackage{bookmark}
\usepackage{mathtools}
\usepackage[compatibility,nofetsolderdot,nooldvoltagedirection,european,betterproportions]{circuitikz}
\usepackage{tikz}
\usepackage{pgf}
\usepackage{pgfplots}
\usepackage{listings}
\usepackage{ifthen}
\usepackage{algorithm}% http://ctan.org/pkg/algorithms
\usepackage{algpseudocode}% http://ctan.org/pkg/algorithmicx
\usepackage[backend=biber,isbn=false,doi=false,url=false]{biblatex}
\usetikzlibrary{positioning, arrows, patterns}
\usetheme{Berlin}
\setbeamertemplate{footline}{}
\setbeamertemplate{headline}{}
\setbeamertemplate{theorems}[ams style]
\setbeamertemplate{caption}[numbered]
% \setbeamercolor{normal text}{bg=gray!5}
\usecolortheme{lily}
\usefonttheme{professionalfonts}
\beamertemplatenavigationsymbolsempty
% \bibliographystyle{abbrv}
\bibliography{cites}
\title{Parallel-in-Time Integration in Circuit Simulation}
\author[F. Madge]{Fabio Madge}
% \institute{Technische Universität München}
\date[25.09.19]{25. September 2019}
\begin{document}
\maketitle
\begin{frame}
\setcounter{tocdepth}{1}
\tableofcontents[pausesections]
\end{frame}
\AtBeginSection[]
{
\begin{frame}
\setcounter{tocdepth}{2}
\tableofcontents[currentsection,hideothersubsections]
\end{frame}
}
\AtBeginSubsection[]
{
\begin{frame}
\setcounter{tocdepth}{2}
\tableofcontents[currentsection,
currentsubsection,
subsectionstyle=show/shaded/hide]
\end{frame}
}
\section{Introduction}
\input{slides/intro}
\section{Algorithm: Parareal}
\input{slides/algorithm}
\section{Application}
\input{slides/application}
\section{Conclusion}
\input{slides/conclusion}
\end{document}