|
1 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
2 % Quiz slides day 1 quiz 1 |
|
3 % |
|
4 % Author: FOSSEE <info at fossee dot in> |
|
5 % Copyright (c) 2005-2009, FOSSEE Team |
|
6 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
7 |
|
8 |
|
9 \documentclass[14pt,compress]{beamer} |
|
10 |
|
11 \mode<presentation> |
|
12 { |
|
13 \useoutertheme{split} |
|
14 \setbeamercovered{transparent} |
|
15 } |
|
16 |
|
17 \definecolor{darkgreen}{rgb}{0,0.5,0} |
|
18 |
|
19 \usepackage{listings} |
|
20 \lstset{language=Python, |
|
21 basicstyle=\ttfamily\bfseries, |
|
22 commentstyle=\color{red}\itshape, |
|
23 stringstyle=\color{darkgreen}, |
|
24 showstringspaces=false, |
|
25 keywordstyle=\color{blue}\bfseries} |
|
26 |
|
27 \newcommand{\kwrd}[1]{ \texttt{\textbf{\color{blue}{#1}}} } |
|
28 |
|
29 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
30 % Macros |
|
31 |
|
32 \newcounter{qno} |
|
33 \setcounter{qno}{0} |
|
34 \newcommand{\incqno}{\addtocounter{qno}{1}{Question \theqno}} |
|
35 |
|
36 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
37 % Title page |
|
38 \title[Basic Python]{Python for science and engineering: Day 1, Quiz 1} |
|
39 |
|
40 \author[FOSSEE Team] {FOSSEE} |
|
41 |
|
42 \institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} |
|
43 \date[] {\today \\Day 1, Quiz 1} |
|
44 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
|
45 \begin{document} |
|
46 |
|
47 \begin{frame} |
|
48 \titlepage |
|
49 \end{frame} |
|
50 |
|
51 \begin{frame} |
|
52 \frametitle{Write your details...} |
|
53 On the top right hand corner please write down the following: |
|
54 \begin{itemize} |
|
55 \item Name: |
|
56 \item University/College/Company: |
|
57 \item Student/Teacher/Professional: |
|
58 \end{itemize} |
|
59 \end{frame} |
|
60 |
|
61 \end{document} |