Is there a simple way to change the fontsize of only (i.e., everything else should remain unchanged) the title in Plots.jl?
How to set title fontsize in Plots.jl
use the titlefontsize
keyword argument. As documented: https://docs.juliaplots.org/latest/generated/attributes_subplot/#
Might also be interesting how to define a font and size at the same time, for both title and axis:
plot(title = "Awesome Title",
titlefont = font(12,"Computer Modern"),
guidefont = font(9,"Computer Modern")
)
© 2022 - 2024 — McMap. All rights reserved.