How can I add a newline to a plot's label (e.g. xlabel or ylabel) in Matplotlib? For example,

plt.bar([1, 2], [4, 5])
plt.xlabel("My x label")
plt.ylabel(r"My long label with $\Sigma_{C}$ math \n continues here") 

Ideally i'd like the y-labeled to be centered too. Is there a way to do this? It's important that the label have both tex (enclosed in '$') and the newline.

thanks.

link|improve this question

76% accept rate
feedback

2 Answers

up vote 3 down vote accepted

Your example is exactly how it's done, you use \n. You need to take off the r prefix though so python doesn't treat it as a raw string

link|improve this answer
3  
You might want to proactively double-escape LaTeX commands to make sure they are not interpreted by Python: xlabel('$\\Sigma$') – honk Apr 17 '10 at 22:54
feedback

You can have the best of both worlds: automatic "escaping" of LaTeX commands and newlines:

plt.ylabel(  r"My long label with $\Sigma_{C}$ math"      "\n"       r"continues here with $\pi$"   )

(spaces only added for legibility: single spaces would suffice). In fact, Python automatically concatenates strings that follow each other.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.