ENH: Fixing compile errors and removing CDEEP.
--- a/day1/Session-1.tex Fri Oct 09 17:04:07 2009 +0530
+++ b/day1/Session-1.tex Fri Oct 09 22:57:00 2009 +0530
@@ -114,7 +114,7 @@
\begin{center}
This program is conducted by\\
IIT, Bombay\\
- through CDEEP\\as part of the open source initiatives\\
+ as part of the open source initiatives\\
under the aegis of\\
\alert{National Mission on Education through ICT,} \\
Ministry of HRD.
@@ -262,7 +262,8 @@
\subsection{Getting Started}
-\begin{frame}[fragile]{At the prompt, type the following}
+\begin{frame}[fragile]
+ \frametitle{At the prompt, type the following}
\begin{lstlisting}
>>> print 'Hello Python'
>>> print 3124 * 126789
@@ -275,7 +276,8 @@
\end{lstlisting}
\end{frame}
-\begin{frame}[fragile]{At the prompt, type the following}
+\begin{frame}[fragile]
+ \frametitle{At the prompt, type the following}
\begin{lstlisting}
>>> s = 'Hello '
>>> p = 'World'
@@ -288,7 +290,8 @@
\end{lstlisting}
\end{frame}
-\begin{frame}[fragile]{At the prompt, type the following}
+\begin{frame}[fragile]
+ \frametitle{At the prompt, type the following}
\begin{lstlisting}
>>> 17/2
>>> 17/2.0
@@ -304,7 +307,7 @@
\end{block}
\end{frame}
-\begin{frame}{Midi exercises}
+\begin{frame}\frametitle{Midi exercises}
\begin{center}
\begin{itemize}
\item What does this do?
@@ -313,7 +316,7 @@
\end{center}
\end{frame}
-\begin{frame}{More exercises}
+\begin{frame}\frametitle{More exercises}
\begin{center}
\begin{block}{Round sums}
How to round a number to the nearest 5 paise?\\
@@ -325,7 +328,7 @@
\end{center}
\end{frame}
-\begin{frame}[fragile] {A question of good style}
+\begin{frame}[fragile] \frametitle{A question of good style}
\begin{lstlisting}
amount = 12.68
denom = 0.05
@@ -498,7 +501,7 @@
\end{lstlisting}
\end{frame}
-\begin{frame}[fragile]{Still with strings}
+\begin{frame}[fragile]\frametitle{Still with strings}
\begin{lstlisting}
In [6]: a.split()
Out[6]: ['hello', 'world']
@@ -513,7 +516,7 @@
\end{block}
\end{frame}
-\begin{frame}[fragile]{String formatting}
+\begin{frame}[fragile]\frametitle{String formatting}
\begin{lstlisting}
In [11]: x, y = 1, 1.2
In [12]: 'x is %s, y is %s' %(x, y)