diff options
author | Shantanu | 2009-11-18 12:36:26 +0530 |
---|---|---|
committer | Shantanu | 2009-11-18 12:36:26 +0530 |
commit | b47083c76bb254636b4f1734fc684250029bcfd1 (patch) | |
tree | d2b3db509ac2ecccc65bfd4b4327ae428db578ab | |
parent | 24c3a88b7a06a6fdd3094ad8b8a63ebb4d784507 (diff) | |
download | workshops-more-scipy-b47083c76bb254636b4f1734fc684250029bcfd1.tar.gz workshops-more-scipy-b47083c76bb254636b4f1734fc684250029bcfd1.tar.bz2 workshops-more-scipy-b47083c76bb254636b4f1734fc684250029bcfd1.zip |
Added changes for cheat sheet 1.
-rwxr-xr-x | day1/cheatsheet1.tex | 23 | ||||
-rw-r--r-- | day1/session1.tex | 26 |
2 files changed, 35 insertions, 14 deletions
diff --git a/day1/cheatsheet1.tex b/day1/cheatsheet1.tex index 26edf77..42b46b1 100755 --- a/day1/cheatsheet1.tex +++ b/day1/cheatsheet1.tex @@ -33,10 +33,31 @@ Exiting \begin{lstlisting} In [2]: (Ctrl-D)^D Do you really want to exit ([y]/n)? y -\end{lstlisting} +\end{lstlisting} %$ \section{Plotting} +\subsection{Label} +Pylab accepts TeX equation expressions in any text expression. To get something like:\\ +$\sigma_i=15$ \\ +on title of figure use: +\begin{lstlisting} + title('$\sigma_i=15$') +\end{lstlisting} +Same way one can have TeX expression on xlabel, ylabel etc. + +\subsection{legends} +Apart from using \kwrd{loc='center'} for positioning the legend, one can also mention explicit co-ordinates for placement. +\begin{lstlisting} +In []: legend(['sin(2y)'], loc=(.8,.1)) +\end{lstlisting} +\typ{loc = 0, 1} (left top position of graph)\\ +\typ{loc = 0.5, 0.5} (center of graph). + +%\subsection{Multiple figures} + +\subsection{Saving figures} +One can save figure in any of these formats: png, pdf, ps, eps and svg. \begin{lstlisting} In [1]: x = linspace(0, 2*pi, 50) In [2]: plot(x, sin(x)) diff --git a/day1/session1.tex b/day1/session1.tex index 61cc0d7..26ec8e1 100644 --- a/day1/session1.tex +++ b/day1/session1.tex @@ -353,19 +353,19 @@ In []: legend(['sin(2y)'], loc = 'center') \end{columns} \end{frame} -\begin{frame}[fragile] - \frametitle{For arbitrary location} -\vspace*{-0.1in} -\begin{lstlisting} -In []: legend(['sin(2y)'], loc=(.8,.1)) -\end{lstlisting} -\emphbar{Specify south-east corner position} -%\vspace*{-0.2in} -\begin{center} - \includegraphics[height=2in, interpolate=true]{data/loc} -\end{center} -%\inctime{10} -\end{frame} +%% \begin{frame}[fragile] +%% \frametitle{For arbitrary location} +%% \vspace*{-0.1in} +%% \begin{lstlisting} +%% In []: legend(['sin(2y)'], loc=(.8,.1)) +%% \end{lstlisting} +%% \emphbar{Specify south-east corner position} +%% %\vspace*{-0.2in} +%% \begin{center} +%% \includegraphics[height=2in, interpolate=true]{data/loc} +%% \end{center} +%% %\inctime{10} +%% \end{frame} \begin{frame}[fragile] \frametitle{Saving \& Closing} |