diff options
author | Puneeth Chaganti | 2010-01-10 18:06:40 +0530 |
---|---|---|
committer | Puneeth Chaganti | 2010-01-10 18:06:40 +0530 |
commit | 4ea5b6737ad202fec6930923f7f1d64d41163ba0 (patch) | |
tree | 067ade5d434674b2ceecf6561804862780c23c9c /day2/day2quiz.tex | |
parent | 22fed19e2d837590067128334834a484db1ec5f0 (diff) | |
download | workshops-more-scipy-4ea5b6737ad202fec6930923f7f1d64d41163ba0.tar.gz workshops-more-scipy-4ea5b6737ad202fec6930923f7f1d64d41163ba0.tar.bz2 workshops-more-scipy-4ea5b6737ad202fec6930923f7f1d64d41163ba0.zip |
Moved quiz files into day folders.
--HG--
rename : day1quiz1.tex => day1/day1quiz1.tex
rename : day1quiz2.tex => day1/day1quiz2.tex
rename : day2quiz.tex => day2/day2quiz.tex
Diffstat (limited to 'day2/day2quiz.tex')
-rwxr-xr-x | day2/day2quiz.tex | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/day2/day2quiz.tex b/day2/day2quiz.tex new file mode 100755 index 0000000..badefbc --- /dev/null +++ b/day2/day2quiz.tex @@ -0,0 +1,64 @@ +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Quiz slides day 1 quiz 1 +% +% Author: FOSSEE <info at fossee dot in> +% Copyright (c) 2005-2009, FOSSEE Team +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + + +\documentclass[14pt,compress]{beamer} + +\mode<presentation> +{ + \useoutertheme{split} + \setbeamercovered{transparent} +} + +\definecolor{darkgreen}{rgb}{0,0.5,0} + +\usepackage{listings} +\lstset{language=Python, + basicstyle=\ttfamily\bfseries, + commentstyle=\color{red}\itshape, + stringstyle=\color{darkgreen}, + showstringspaces=false, + keywordstyle=\color{blue}\bfseries} + +\newcommand{\kwrd}[1]{ \texttt{\textbf{\color{blue}{#1}}} } + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Macros + +\newcounter{qno} +\setcounter{qno}{0} +\newcommand{\incqno}{\addtocounter{qno}{1}{Question \theqno}} + +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% +% Title page +\title[Basic Python]{Python for science and engineering: Day 2, Quiz 1} + +\author[FOSSEE Team] {FOSSEE} + +\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} +\date[] {\today \\ Day 2, Quiz 1} +%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% + + +\begin{document} + +\begin{frame} + \titlepage +\end{frame} + +\begin{frame} + \frametitle{Write your details...} +On the top right hand corner please write down the following: + \begin{itemize} + \item Name: + \item University/College/Company: + \item Student/Teacher/Professional: + \end{itemize} +\end{frame} + +\end{document} + |