我想在x轴标签上显示"A·B“(用点显示它,意思是A* B),但搜索失败。
有人能用它给我建议吗?
谢谢。
发布于 2022-09-09 06:47:54
也许你可以试试这样的方法:
import matplotlib.pyplot as plt plt.plot([1, 2, 3], [1, 2, 3]) plt.xlabel(r'$A \cdot B$')
https://stackoverflow.com/questions/73656758
相似问题