author | Shantanu <shantanu@fossee.in> |
Tue, 10 Nov 2009 12:21:29 +0530 | |
changeset 294 | f05b1c457120 |
parent 269 | 9c9be698d7ad |
child 339 | 8ac5fe07810f |
permissions | -rw-r--r-- |
202 | 1 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 |
%Tutorial slides on Python. |
|
3 |
% |
|
4 |
% Author: FOSSEE |
|
5 |
% Copyright (c) 2009, FOSSEE, IIT Bombay |
|
6 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
7 |
||
8 |
\documentclass[14pt,compress]{beamer} |
|
9 |
%\documentclass[draft]{beamer} |
|
10 |
%\documentclass[compress,handout]{beamer} |
|
11 |
%\usepackage{pgfpages} |
|
12 |
%\pgfpagesuselayout{2 on 1}[a4paper,border shrink=5mm] |
|
13 |
||
14 |
% Modified from: generic-ornate-15min-45min.de.tex |
|
15 |
\mode<presentation> |
|
16 |
{ |
|
17 |
\usetheme{Warsaw} |
|
239
8953675dc056
Added slide numbers.
Puneeth Chaganti <punchagan@fossee.in>
parents:
226
diff
changeset
|
18 |
\useoutertheme{infolines} |
202 | 19 |
\setbeamercovered{transparent} |
20 |
} |
|
21 |
||
22 |
\usepackage[english]{babel} |
|
23 |
\usepackage[latin1]{inputenc} |
|
24 |
%\usepackage{times} |
|
25 |
\usepackage[T1]{fontenc} |
|
26 |
\usepackage{amsmath} |
|
27 |
||
28 |
% Taken from Fernando's slides. |
|
29 |
\usepackage{ae,aecompl} |
|
30 |
\usepackage{mathpazo,courier,euler} |
|
31 |
\usepackage[scaled=.95]{helvet} |
|
32 |
||
33 |
\definecolor{darkgreen}{rgb}{0,0.5,0} |
|
34 |
||
35 |
\usepackage{listings} |
|
36 |
\lstset{language=Python, |
|
37 |
basicstyle=\ttfamily\bfseries, |
|
38 |
commentstyle=\color{red}\itshape, |
|
39 |
stringstyle=\color{darkgreen}, |
|
40 |
showstringspaces=false, |
|
41 |
keywordstyle=\color{blue}\bfseries} |
|
42 |
||
43 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
44 |
% Macros |
|
45 |
\setbeamercolor{emphbar}{bg=blue!20, fg=black} |
|
46 |
\newcommand{\emphbar}[1] |
|
47 |
{\begin{beamercolorbox}[rounded=true]{emphbar} |
|
48 |
{#1} |
|
49 |
\end{beamercolorbox} |
|
50 |
} |
|
51 |
\newcounter{time} |
|
52 |
\setcounter{time}{0} |
|
53 |
\newcommand{\inctime}[1]{\addtocounter{time}{#1}{\tiny \thetime\ m}} |
|
54 |
||
55 |
\newcommand{\typ}[1]{\lstinline{#1}} |
|
56 |
||
57 |
\newcommand{\kwrd}[1]{ \texttt{\textbf{\color{blue}{#1}}} } |
|
58 |
||
59 |
%%% This is from Fernando's setup. |
|
60 |
% \usepackage{color} |
|
61 |
% \definecolor{orange}{cmyk}{0,0.4,0.8,0.2} |
|
62 |
% % Use and configure listings package for nicely formatted code |
|
63 |
% \usepackage{listings} |
|
64 |
% \lstset{ |
|
65 |
% language=Python, |
|
66 |
% basicstyle=\small\ttfamily, |
|
67 |
% commentstyle=\ttfamily\color{blue}, |
|
68 |
% stringstyle=\ttfamily\color{orange}, |
|
69 |
% showstringspaces=false, |
|
70 |
% breaklines=true, |
|
71 |
% postbreak = \space\dots |
|
72 |
% } |
|
73 |
||
74 |
||
75 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
76 |
% Title page |
|
269
9c9be698d7ad
Removed all content of Session 5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
266
diff
changeset
|
77 |
\title[]{} |
202 | 78 |
|
79 |
\author[FOSSEE] {FOSSEE} |
|
80 |
||
81 |
\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
|
222
ffa8f417d761
Corrected session number in session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
221
diff
changeset
|
82 |
\date[] {31, October 2009\\Day 1, Session 5} |
202 | 83 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
84 |
||
85 |
%\pgfdeclareimage[height=0.75cm]{iitmlogo}{iitmlogo} |
|
86 |
%\logo{\pgfuseimage{iitmlogo}} |
|
87 |
||
88 |
||
89 |
%% Delete this, if you do not want the table of contents to pop up at |
|
90 |
%% the beginning of each subsection: |
|
91 |
\AtBeginSubsection[] |
|
92 |
{ |
|
93 |
\begin{frame}<beamer> |
|
94 |
\frametitle{Outline} |
|
95 |
\tableofcontents[currentsection,currentsubsection] |
|
96 |
\end{frame} |
|
97 |
} |
|
98 |
||
224
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
99 |
\AtBeginSection[] |
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
100 |
{ |
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
101 |
\begin{frame}<beamer> |
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
102 |
\frametitle{Outline} |
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
103 |
\tableofcontents[currentsection,currentsubsection] |
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
104 |
\end{frame} |
668f88f20218
Added differentiation example.
Puneeth Chaganti <punchagan@fossee.in>
parents:
223
diff
changeset
|
105 |
} |
202 | 106 |
|
107 |
% If you wish to uncover everything in a step-wise fashion, uncomment |
|
108 |
% the following command: |
|
109 |
%\beamerdefaultoverlayspecification{<+->} |
|
110 |
||
111 |
%\includeonlyframes{current,current1,current2,current3,current4,current5,current6} |
|
112 |
||
113 |
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
114 |
% DOCUMENT STARTS |
|
115 |
\begin{document} |
|
116 |
||
117 |
\begin{frame} |
|
118 |
\titlepage |
|
119 |
\end{frame} |
|
120 |
||
259
bb77a470e00a
Added loadtxt section to Day1 Session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
256
diff
changeset
|
121 |
%% \begin{frame} |
bb77a470e00a
Added loadtxt section to Day1 Session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
256
diff
changeset
|
122 |
%% \frametitle{Outline} |
bb77a470e00a
Added loadtxt section to Day1 Session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
256
diff
changeset
|
123 |
%% \tableofcontents |
bb77a470e00a
Added loadtxt section to Day1 Session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
256
diff
changeset
|
124 |
%% % \pausesections |
bb77a470e00a
Added loadtxt section to Day1 Session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
256
diff
changeset
|
125 |
%% \end{frame} |
bb77a470e00a
Added loadtxt section to Day1 Session5.
Puneeth Chaganti <punchagan@fossee.in>
parents:
256
diff
changeset
|
126 |
|
223
081600805dde
Minor edits to sessions 5 and 6.
Puneeth Chaganti <punchagan@fossee.in>
parents:
222
diff
changeset
|
127 |
|
202 | 128 |
\end{document} |
129 |