##// END OF EJS Templates
Updated the multiengine and task interface documentation....
Updated the multiengine and task interface documentation. The multiengine interface documentation is in very good condition. The task interface documentation is in OK condition. The main problem is that the task documentation had fallen very out of date. Rather than trying to update all of it, I moved the old task documentation to a file (docs/source/parallel/parallel_task_old.txt) and started a new shorter task documentation that is fully up to date. This should get user's started with the new stuff. But, we do need to write more complete task interface docs.

File last commit:

r1248:19e3b286
r1678:75e7964c
Show More
nbexample_latex.py
25 lines | 557 B | text/x-python | PythonLexer
from notebook.markup import latex
latex.document_class('article')
latex.title('This is a Python Notebook')
latex.section('A section title',label='sec:intro')
latex.text(r"""Below, we define a simple function
\begin{equation}
f: (x,y) \rightarrow x+y^2
\end{equation}""")
def f(x,y):
return x+y**2
# since the .text method passes directly to latex, all markup could be input
# in that way if so desired
latex.text(r"""
\section{Another section}
More text...
And now a picture showing our important results...""")
latex.include_graphic('foo.png')