diff options
author | Anoop Jacob Thomas | 2010-12-18 12:54:49 +0530 |
---|---|---|
committer | Anoop Jacob Thomas | 2010-12-18 12:54:49 +0530 |
commit | 8237dcc199da39222a5ad230506a67612c8f42bb (patch) | |
tree | 10d36ba208a172cd9415c92b7f76adc1b432f020 /getting_started_with_ipython | |
parent | 9ef42a846bf92217dcca5aa3ae084e6dc9470b82 (diff) | |
download | st-scripts-8237dcc199da39222a5ad230506a67612c8f42bb.tar.gz st-scripts-8237dcc199da39222a5ad230506a67612c8f42bb.tar.bz2 st-scripts-8237dcc199da39222a5ad230506a67612c8f42bb.zip |
Made some changes to the script embellishing a plot, but it still needs changes.
Diffstat (limited to 'getting_started_with_ipython')
-rw-r--r-- | getting_started_with_ipython/slides.tex | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/getting_started_with_ipython/slides.tex b/getting_started_with_ipython/slides.tex index 310db35..9cf2655 100644 --- a/getting_started_with_ipython/slides.tex +++ b/getting_started_with_ipython/slides.tex @@ -1,4 +1,4 @@ -% Created 2010-11-05 Fri 20:59 +% Created 2010-12-18 Sat 12:23 \documentclass[presentation]{beamer} \usepackage[latin1]{inputenc} \usepackage[T1]{fontenc} @@ -8,6 +8,7 @@ \usepackage{float} \usepackage{wrapfig} \usepackage{soul} +\usepackage{t1enc} \usepackage{textcomp} \usepackage{marvosym} \usepackage{wasysym} @@ -84,8 +85,7 @@ showstringspaces=false, keywordstyle=\color{blue}\bfseries} \label{sec-6} Check the output of -\lstset{language=Python} -\begin{lstlisting} +\begin{verbatim} round(2.48) round(2.48, 1) round(2.48, 2) @@ -93,7 +93,7 @@ round(2.48, 2) round(2.484) round(2.484, 1) round(2.484, 2) -\end{lstlisting} +\end{verbatim} Look-up the documentation of \texttt{round} and see how to use it. \end{frame} \begin{frame} @@ -114,13 +114,12 @@ round(2.484, 2) \frametitle{Solution 4} \label{sec-9} -\lstset{language=Python} -\begin{lstlisting} +\begin{verbatim} round(2.484 ^C round(2.484, 2) -\end{lstlisting} +\end{verbatim} \end{frame} \begin{frame} \frametitle{Summary} |