Plots: where to find the list of available fonts? Is it possible to set all fonts simultaneously

You can set the defaults by providing a PLOTS_DEFAULTS in your startup.jl. i.e.

const PLOTS_DEFAULTS = Dict(
    :theme=>:default,
    :fontfamily => "Computer Modern")

Alternatively you can call the default function.

4 Likes