如何在 matplotlib 中获取反斜杠标记?

问题描述 投票:0回答:1

我希望这个 Python 3.11 脚本能够渲染

\
标记:

import numpy as np, matplotlib.pyplot as plt

plt.scatter([1, 2, 3], [3, 1, 4], marker='$\textbackslash$', c='b')
plt.show()

但它会渲染

-
。如何获得
\
或类似标记?

python matplotlib scatter-plot
1个回答
1
投票

此链接提供了您可以使用的所有受支持的数学文本符号:

https://matplotlib.org/stable/users/explain/text/mathtext.html

对于反斜杠尝试

marker=r'$\backslash$'

© www.soinside.com 2019 - 2024. All rights reserved.