I'm using a font called a ttf font called FreeSans on linux with matplotlib. I create my figure as:
from matplotlib import rc
plt.rcParams['ps.useafm'] = True
rc('font',**{'family':'sans-serif','sans-serif':['FreeSans']})
plt.rcParams['pdf.fonttype'] = 42
plt.figure()
# plot figure...
plt.savefig("myfig.pdf")
When I open it on another program (e.g. illustrator on Mac OS X) then the font does not appear and the default font is used instead, since FreeSans is unavailable.
How can I make it so matplotlib embeds the font in every PDF it produces? I don't mind if the file is larger. Thanks.