Since no one else is answering, here’s some input, maybe useful: Computer Modern is Knuth’s font for TeX. In the post you reference it’s however being used by MathJax so it’s not clear to me what’s happening here. The suggestion of using “Computer Modern” may be specific to that setup with specific backends. In any case, I’m not sure that Computer Modern is a good font choice, Knuth last updated it in 1992. I’m sure there are better, TTF or OTF, font available now.
using Plots; pythonplot(dpi=100)
plot(sin, fontfamily="cm", tickfontsize=20)
which issues the same error: findfont: Font family 'cm' not found.
however, what is plotted does look like “Computer Modern”.
Could someone enlighten if pythonplot’s “cm” and gr’s “Computer Modern” could be matched, so that when we change backend we can keep the same font family.
So Plots.plot(..., xlabel="x", fontfamily="cmr10") (“Computer Modern Roman”) works for setting the non-math font, but it sadly won’t select cm as the math font. Plots just doesn’t know how to translate cmr10 into the appropriate math font. I had thought this could be achieved by setting Plots.PythonPlot.matplotlib.rcParams["mathtext.fontset"] = "cm", but alas Plots has other plans and keeps falling back to dejavu for math.