With your machine connected to the Internet, open IPython console and at the IPython prompt, type the following statements
from IPython.external.mathjax import install_mathjax
install_mathjax()
Wait for MathJax to be downloaded and installed. Now you have a local copy of MathJax and $\LaTeX$ equations will be rendered even when you are not connected to the Internet
IPython Notebooks are live, that is code can be changed and executed to see the change to the output. Notebooks can be converted to other formats, but the Notebook is now static, that is, code can no longer be changed and executed to see the changed output.
Following output formats are supported:
latex
is installedpdflatex
is installedCommands to convert Notebooks to other formats are:
ipython nbconvert notebook.ipynb
ipython nbconvert notebook.ipynb --to latex
ipython nbconvert notebook.ipynb --to latex --post PDF
ipython notebook notebook.ipynb --to slides --post serve
.ipynb
Change over to the chosen directory and type the command at the command prompt
ipython notebook
This will start up the IPython Notebook server, which is a web server listening usually on port 8888
# Level 1 Heading
##
indicate a Level 2 heading, Three ###
indicate a Level 3 heading and so on**Bold**
will show up as Bold*Italic*
shows up as Italicmonospaced
is typeset by enclosing monospaced within two backquotes, namely `$
to demarcate a $\LaTeX$ equation. For example $f(x) = a^2 x + b x + x$
will be typeset as $f(x) = a^2 x + b x + x$$$ f(x) = \frac{\sqrt{a^2 + b^2}}{2 \sin \theta} $$
\begin{equation}
\begin{align}
\begin{align} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{align}
\begin{align} \dot{x} & = \sigma(y-x) \\ \dot{y} & = \rho x - y - xz \\ \dot{z} & = -\beta z + xy \end{align}Ctrl+C
twice. If server does not shutdown, close the MS DOS prompt window
In [1]:
from IPython.display import Image
Image(filename='python-logo.png')
Out[1]:
In [ ]: