gpt4 book ai didi

python - matplotlib 和 latex 之间的一致字体

转载 作者:行者123 更新时间:2023-11-28 22:40:12 25 4
gpt4 key购买 nike

我正在拼命寻找“最简单的方法”来在我的 matplotlib 图形和 latex 文档中获得外观相同的文本。

到目前为止,我的策略是:

  • 为我的 Latex 图形设置明确的宽度,并使用 Matplotlib 设置相同的大小。这样设置 mpl 中的字体大小等于 Latex 字体大小应该是第一步

  • 在 mpl 中使用 usetex = True 选项。我知道这应该让 mpl 使用 Latex 处理图中的所有文本(标题、标签、文本、注释等)。

我的问题是,最后我仍然无法按照自己的意愿设置字体。

这是一个示例,其中水平轴标签字体与刻度标签明显不同,我确信这与我的 latex 文档的文本相同。

这是生成图形的代码:

import matplotlib as mpl
import matplotlib.pyplot as plt
import numpy as np

with plt.style.context('journal'):
fig_size = [3.4, 2.1]
fig = plt.figure(1, figsize=fig_size)
ax1 = plt.subplot(111)
ax1.plot([1,2,3,4,5], '+--')
ax1.set_xlabel(r'1 2 3 4.0 intensity [$10^{13}p$]')
plt.tight_layout()
fig.savefig('test.png') # I saved to png for SO but the goal is eps

我的journal mpl 样式表是

backend: PS
text.usetex: True
text.latex.unicode: True
font.family: lmodern # apparently no effect as usetex is true anyway
font.size: 10
axes.titlesize: 10
axes.labelsize: 10
axes.unicode_minus: True
axes.linewidth: 1
legend.fontsize: 10
xtick.labelsize: 10
xtick.major.size: 4
xtick.major.width: 0.5
ytick.labelsize: 10
lines.linewidth: 1.5
lines.markersize: 3
figure.titleweight: normal
savefig.dpi: 600

enter image description here

此外,我什至不确定我是否能够从现代计算机选择/切换到拉丁现代,部分原因是我的眼睛无法区分它们(这在某种程度上使问题变得无关紧要,但你知道。 .. 极客...).

最佳答案

我多年来一直在使用它,没有任何问题;只需在 text.latex preamble 中指定与我在 LaTeX 文档中使用的字体相同的字体,例如:

import matplotlib.pylab as pl
from matplotlib import rc
rc('text', usetex=True)
rc('font', size=14)
rc('legend', fontsize=13)
rc('text.latex', preamble=r'\usepackage{cmbright}')

pl.figure()
pl.plot([0,1], [0,1], label=r'$\theta_{\phi}^3$')
pl.legend(frameon=False, loc=2)
pl.xlabel(r'change of $\widehat{\phi}$')
pl.ylabel(r'change of $\theta_{\phi}^3$')

enter image description here

edit 我以前从未使用过样式表,但当我将它放入一个空样式表时,这似乎也能正常工作:

text.usetex: True
font.size: 14
legend.fontsize: 13
text.latex.preamble: \usepackage{cmbright}

关于python - matplotlib 和 latex 之间的一致字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33942210/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com