getting-started-ipython/quickref.tex
changeset 285 7c4855fb8e5f
parent 217 b595f90016c5
--- a/getting-started-ipython/quickref.tex	Mon Oct 11 01:25:45 2010 +0530
+++ b/getting-started-ipython/quickref.tex	Mon Oct 11 11:40:04 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.