我正在尝试使用 Matplotlib 图形作为相机就绪提交的一部分,而出版社只要求使用 Type 1 字体。
我发现 PDF 后端很高兴为具有线性 Y 轴的简单图形输出 Type-1 字体,但为对数 Y 轴输出 Type-3 字体。
使用对数 yscale 会导致使用 mathtext,它似乎使用 Type 3 字体,大概是因为默认使用指数符号。我可以使用丑陋的技巧来解决这个问题 - 使用 pyplot.yticks() 强制轴刻度不使用指数 - 但这需要移动绘图区域以容纳大标签(如 10 ^ 6)或将轴写为10、100、1K 等,因此它们适合。
截至今天,我已经使用 matplotlib master 分支以及 1.1.1 测试了下面的示例,它产生了相同的行为,所以我不知道这是一个错误,可能只是意外行为。
#!/usr/bin/env python
# Simple program to test for type 1 fonts.
# Generate a line graph w/linear and log Y axes.
from matplotlib import rc, rcParams
rc('font',**{'family':'sans-serif','sans-serif':['Helvetica']})
#rc('font',**{'family':'sans-serif','sans-serif':['computer modern sans serif']})
# These lines are needed to get type-1 results:
# http://nerdjusttyped.blogspot.com/2010/07/type-1-fonts-and-matplotlib-figures.html
rcParams['ps.useafm'] = True
rcParams['pdf.use14corefonts'] = True
rcParams['text.usetex'] = False
import matplotlib.pyplot as plt
YSCALES = ['linear', 'log']
def plot(filename, yscale):
plt.figure(1)
xvals = range(1, 2)
yvals = xvals
plt.plot(xvals, yvals)
plt.yscale(yscale)
plt.savefig(filename + '.pdf')
if __name__ == '__main__':
for yscale in YSCALES:
plot('linegraph-' + yscale, yscale)
有谁知道用日志轴获得 Type 1 字体的干净方法?
谢谢!