-
Notifications
You must be signed in to change notification settings - Fork 13
/
slides.tex
51 lines (42 loc) · 903 Bytes
/
slides.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
\documentclass[pdf]{beamer}
\mode<presentation>{}
\usepackage{colortbl}
\usepackage{tikz}
\usetikzlibrary{positioning}
\usetikzlibrary{arrows}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{mathtools}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\setbeamertemplate{footline}[frame number]
%% preamble
\title{Tree data structures}
\author{Guillaume \textsc{Derval}}
\begin{document}
%% title frame
\begin{frame}
\titlepage
\end{frame}
{
\begin{frame}{Table of Contents}
\tableofcontents[]
\end{frame}
}
\AtBeginSection[]
{
\begin{frame}{Table of Contents}
\tableofcontents[currentsection]
\end{frame}
}
\AtBeginSubsection[]
{
\begin{frame}{Table of Contents}
\tableofcontents[currentsection, currentsubsection]
\end{frame}
}
\input{bst.tex}
\input{heap.tex}
%\input{./1-sorting/sec.tex}
%\input{./2-convex/sec.tex}
\end{document}