Session 3 now compiles; errors corrected.
authorPuneeth Chaganti <punchagan@fossee.in>
Wed, 14 Oct 2009 20:05:22 +0530
changeset 117 958e3e090c6b
parent 116 cb91f43d2cbb
child 119 7ae0f756f050
Session 3 now compiles; errors corrected.
day1/session3.tex
--- a/day1/session3.tex	Wed Oct 14 16:34:30 2009 +0530
+++ b/day1/session3.tex	Wed Oct 14 20:05:22 2009 +0530
@@ -135,7 +135,7 @@
 \end{itemize}
 \end{frame}
 
-\begin{frame}
+\begin{frame}[fragile]
 \frametitle{Least Squares Fit \ldots}
 Machinery Required -
 \begin{itemize}
@@ -166,7 +166,7 @@
 \end{frame}
 
 \begin{frame}[fragile]
-\frametitle{Calculating T^2}
+\frametitle{Calculating $T^2$}
 \begin{itemize}
 \item Each element of the list T must be squared
 \item Iterating over each element of the list works
@@ -241,7 +241,7 @@
 \begin{lstlisting}
 p=poly1d(coeffs)
 \end{lstlisting}
-\item Get new T^2 values using the function \typ{p} obtained
+\item Get new $T^2$ values using the function \typ{p} obtained
 \begin{lstlisting}
 Tline = p(L)
 \end{lstlisting}
@@ -249,6 +249,7 @@
 \begin{lstlisting}
 plot(L, Tline)
 \end{lstlisting}
+\end{itemize}
 \end{frame}
 
 \end{document}