對於一個非常基本的問題表示歉意,但這是我總是忘記的事情,而且用google之類的東西很難找到,所以我把它放在這裡供大家將來參考。
據我記得,它$\times$
在情節標題中不起作用matplotlib
(也許是因為matplotlib
沒有實現該特定符號?)。
我得到類似“A imes
B”(imes
乳膠字體)的標題“A $\times$ B”。
答案1
此範例按預期工作:(注意r
標題字串前面的 )
#!/usr/bin/env python
import matplotlib.pyplot as plt
plt.title(r'$A \times B$')
plt.plot([0,1,2])
plt.savefig('test.png')