--- a/getting-started-ipython/quickref.tex Wed Oct 13 17:32:23 2010 +0530
+++ b/getting-started-ipython/quickref.tex Wed Oct 13 17:32:59 2010 +0530
@@ -1,8 +1,14 @@
-Creating a linear array:\\
-{\ex \lstinline| x = linspace(0, 2*pi, 50)|}
+\textbf{Getting started -- \texttt{ipython}}
+
+To start \lstinline|ipython| with \lstinline|pylab|:\\
+\lstinline| $ ipython -pylab| %$
+
+To exit: \lstinline|^D| (Ctrl-D)
-Plotting two variables:\\
-{\ex \lstinline| plot(x, sin(x))|}
+To interrupt: \lstinline|^C| (Ctrl-C)
+
+Tab completes partial commands
-Plotting two lists of equal length x, y:\\
-{\ex \lstinline| plot(x, y)|}
+\texttt{?} to look up documentation.
+
+Arrow keys to navigate the history.