使用 Cairo 渲染器的 Matplotlib Unicode 轴标签

发布于 2024-10-25 17:26:00 字数 284 浏览 1 评论 0原文

我正在尝试使用 Matplotlib 在轴标签中使用非拉丁字符(“μ”)生成一个绘图,如下所示:

matplotlib.pyplot.xlabel(u'Sarcomere Length (μm)')

我在 Linux 上使用 Cairo 渲染器,并且得到一个“box”而不是"μ":

不正确的轴标签

它适用于带重音的拉丁字符(如“é”)。有什么想法吗?

I'm trying to generate a plot using Matplotlib with a non-Latin character (a "μ") in an axis label, like this:

matplotlib.pyplot.xlabel(u'Sarcomere Length (μm)')

I'm using the Cairo renderer on Linux and I'm getting a "box" instead of "μ":

Incorrect Axis Label

It works with accented Latin characters (like "é"). Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

心凉怎暖 2024-11-01 17:26:00

这是字体问题。无论您设置为 matplotlib 默认值的字体是什么,都没有该特定字符。有多种方法可以潜在地解决此问题,但这将相当依赖于系统。 (这可能就像确保安装了适当的字体包一样简单。)

您可以设置 matplotlib 将在 .matplotlibrc 文件。如果找不到您尝试使用的确切字体,您可以在 .matplotlibrc 文件中指定相应 .ttf 字体文件的完整路径。不过,通常您不需要这样做。

但是,对于您上面指定的特定情况,有一种更简单的方法。

一般来说,您最好使用 matplotlib 的 mathtext 渲染 来完成类似的事情希腊符号。例如,改为 matplotlib.pyplot.xlabel(r'Sarcomere Length ($\mu m$)')

It's a font problem. Whatever font you have set as matplotlib's default doesn't have that particular character. There are a number of ways to potentially fix this, but it's going to be fairly system dependent. (It may be as simple as ensuring that you have the appropriate font package installed.)

You can set the fonts that matplotlib will use in your .matplotlibrc file. If it doesn't find the exact font you're trying to use, you can specify the full path to the appropriate .ttf font file in the .matplotlibrc file. Usually you won't need to do this, though.

However, there's a simpler way, in the particular case you specified above.

Generally speaking, you're better off using matplotlib's mathtext rendering for things like greek symbols. E.g. do matplotlib.pyplot.xlabel(r'Sarcomere Length ($\mu m$)') instead.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文