On Mon, Feb 22, 2010 at 8:36 AM, Philipp Bender <[email protected]> wrote: > Hi, > >> How do I print as label of an axis the Theta symbol - θ? > > you can take a look in the docs, there are examples how to use LaTeX for the > labels. You get the letter in LaTeX with \theta or \Theta.
But be sure to either use raw strings or escape properly: r"\theta" or "\\theta" ------------------------------------------------------------------------------ Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling, find bugs proactively, and fine-tune applications for parallel performance. See why Intel Parallel Studio got high marks during beta. http://p.sf.net/sfu/intel-sw-dev _______________________________________________ Matplotlib-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/matplotlib-users
