I'm trying to add some more complex LaTeX-rendered equations into a a
figure, and having some problems.   I've been trying various things
with 'usetex', but it seems the problem might be that I can't seem to
write the LaTex code on a single line.

For example, can you not do:
ax.text(0,0,r"""
...
...
""")

?

One example that I'm trying is the following, using 'cases'.  I'll
paste a complete .tex file:

\documentclass{article}
\pagestyle{empty}
\usepackage{amsmath}
\begin{document}

\begin{equation*}
x(t) =
\begin{cases}
1, \quad & t \ge 0 \\
0,       & t < 0
\end{cases}
\end{equation*}

\end{document}


Any suggestions?  I think this works with '\displaystyle' inside
single '$', but you need multiple lines... ?

thanks,
Ken

------------------------------------------------------------------------------
This SF.net email is sponsored by:
SourcForge Community
SourceForge wants to tell your story.
http://p.sf.net/sfu/sf-spreadtheword
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to