diff options
author | Prabhu Ramachandran | 2018-05-16 23:17:37 +0530 |
---|---|---|
committer | Prabhu Ramachandran | 2018-05-16 23:17:37 +0530 |
commit | 6e11651287dab0a5efef546c155c8849ad7e6c32 (patch) | |
tree | 6b6ba0dc545a3cd4438872872073328031bcf6af /advanced_python | |
parent | 91ed38c26f5972a6e7df67406923bbcb578791d2 (diff) | |
download | python-workshops-6e11651287dab0a5efef546c155c8849ad7e6c32.tar.gz python-workshops-6e11651287dab0a5efef546c155c8849ad7e6c32.tar.bz2 python-workshops-6e11651287dab0a5efef546c155c8849ad7e6c32.zip |
Adding convenient template slides.
Diffstat (limited to 'advanced_python')
-rw-r--r-- | advanced_python/lecture_template.tex | 34 | ||||
-rw-r--r-- | advanced_python/practice_template.tex | 36 |
2 files changed, 70 insertions, 0 deletions
diff --git a/advanced_python/lecture_template.tex b/advanced_python/lecture_template.tex new file mode 100644 index 0000000..4ed1715 --- /dev/null +++ b/advanced_python/lecture_template.tex @@ -0,0 +1,34 @@ +\documentclass[14pt,compress,aspectratio=169]{beamer} + +\input{macros.tex} + +\title[Introduction to OOP]{Advanced Python} +\subtitle{Introduction to Object Oriented Programming } + +\author[FOSSEE] {The FOSSEE Group} + +\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} +\date[] {Mumbai, India} + +\begin{document} + +\begin{frame} + \titlepage +\end{frame} + +\begin{frame} + \frametitle{Outline} + \begin{itemize} + \end{itemize} +\end{frame} + + + +\begin{frame} + \frametitle{Summary} + \begin{itemize} + \end{itemize} +\end{frame} + + +\end{document} diff --git a/advanced_python/practice_template.tex b/advanced_python/practice_template.tex new file mode 100644 index 0000000..90ec509 --- /dev/null +++ b/advanced_python/practice_template.tex @@ -0,0 +1,36 @@ +\documentclass[14pt,compress]{beamer} + +\input{macros.tex} + +\title[Practice ]{Advanced Python} +\subtitle{Practice } + +\author[FOSSEE] {The FOSSEE Group} + +\institute[IIT Bombay] {Department of Aerospace Engineering\\IIT Bombay} +\date[] {Mumbai, India} + +\begin{document} + +\begin{frame} + \titlepage +\end{frame} + +\begin{frame}[plain, fragile] + \frametitle{Exercise: } + \begin{block}{} + \end{block} + +\begin{lstlisting} +\end{lstlisting} +\end{frame} + + +\begin{frame}[plain, fragile] + \frametitle{Solution} +\begin{lstlisting} + +\end{lstlisting} +\end{frame} + +\end{document} |