stackoverflow.com /questions/5956182/cannot-edit-text-in-chart-exported-by-matplotlib-and-opened-in-illustrator
是由于默认的fonttype=3引起的,illustrator不能处理这种类型,可改为42(TrueType)就可以了:
>>> import matplotlib as mpl
>>> mpl.rcParams['pdf.fonttype'] = 42
stackoverflow.com /questions/5956182/cannot-edit-text-in-chart-exported-by-matplotlib-and-opened-in-illustrator
是由于默认的fonttype=3引起的,illustrator不能处理这种类型,可改为42(TrueType)就可以了:
>>> import matplotlib as mpl
>>> mpl.rcParams['pdf.fonttype'] = 42