Reputation: 1192
I am using the Plots.text
function from the Plots.jl
package to annotate points in my plot. It appears that changing the plot(..., fontfamily="Computer Modern")
does note seem to have an effect on these annotations.
Upvotes: 2
Views: 1318
Reputation: 1192
Plots.text
creates a text object including styling information. It is therefore necessary to change the font directly
Plots.text("abcde", "Arial")
seems to work
Upvotes: 1