-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpresentation-template.tex
More file actions
75 lines (49 loc) · 1.24 KB
/
presentation-template.tex
File metadata and controls
75 lines (49 loc) · 1.24 KB
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
\documentclass{beamer}
%\usepackage[latin1]{inputenc}
\usetheme{Warsaw}
\title[Intro to Python: Week the_week_number]{Introduction to Python}
\author{Christopher Barker}
\institute{UW Continuing Education / Isilon}
\date{the_date_string}
\usepackage{listings}
\usepackage{hyperref}
\begin{document}
% ---------------------------------------------
\begin{frame}
\titlepage
\end{frame}
% ---------------------------------------------
\begin{frame}
\frametitle{Table of Contents}
%\tableofcontents[currentsection]
\tableofcontents
\end{frame}
\section{Review/Questions}
% ---------------------------------------------
\begin{frame}{Review of Previous Class}
\begin{itemize}
\item ...
\end{itemize}
\end{frame}
% header
% ---------------------------------------------
\begin{frame}{Homework review}
{\Large Homework notes }
\end{frame}
\section{First Section}
% ---------------------------------------------
\begin{frame}[fragile]{First Topic}
{\Large A topicc}
\begin{verbatim}
some code example
\end{verbatim}
\end{frame}
\section{Another Section}
% ---------------------------------------------
\begin{frame}[fragile]{First Topic}
{\Large A topicc}
\begin{verbatim}
some code example
\end{verbatim}
\end{frame}
\end{document}