I am using Plots.jl to create some plots with the default backend (I think it is the gr
backend). I know that I can set say the title font and the legend font to say “computer modern” using the command:
Plots.default(titlefont = ("computer modern"), legendfont = ("computer modern"))
If I want the times new roman
font I can do:
Plots.default(titlefont = ("times"), legendfont = ("times"))
Is there some documentation with the list of fonts that I can use? I tried “Palatino” (which is on my Mac) but that did not work.
My other question is, is there a command that changes font of all items in a plot to say “computer modern”, or do I have to change each one (title, legend, guide etc.) separately?
Thank you.