TeX compiles $A_{\textrm{C-C}}$
displaying a hyphen in the subscript. How can I produce the same result in matplotlib without using TeX? The command \textrm
is from the amstext package and produces an unknown symbol error in the default math text.
I tried the following code (resulting in an unknown symbol error):
#!/usr/bin/env python
import matplotlib.pyplot as plt
fig = plt.figure()
ax = fig.add_subplot(111)
ax.axis([0, 2, 0, 2])
ax.text(1, 1, r'$A_{\textrm{C-C}}$')
plt.show()
Inserting a Unicode hyphen (
u"\u2010"
) produced the correct text:Plot produced by the script