我正在使用 matplotlib 生成带有乳胶渲染文本的图表。现在有这个棘手的问题,我似乎无法自己解决..
使用 twinx() 生成的辅助 y 轴显示错误的刻度标签和 ylabel 字体!我究竟做错了什么?这就是我所做的。
from matplotlib import pyplot as plt
from matplotlib import rc
from matplotlib.figure import Figure
from matplotlib.axes import Axes
from matplotlib.lines import Line2D
rc('font',**{'family':'serif','sans-serif':['Computer Modern Roman']})
rc('text', usetex=True)
fig = plt.figure(figsize = (4,4) )
ax = Axes(fig, [.1,.1,.8,.8])
ax_ = ax.twinx()
fig.add_axes(ax)
fig.add_axes(ax_)
l = Line2D([0, 1],[0, 1], color='r')
ax.set_ylabel(r'Label')
ax_.set_ylabel(r'Label')
ax.add_line( l )
plt.show()
正在使用的版本:matplotlib 0.99.1.1 tex.. 不知道;全部在 linux 上
ps:这样渲染文本、标题等效果很好,只是次要的y轴表现得相当糟糕!