How to typeset in bold letters with `annotate!()` using Plots

using Plots
gr()
plot(sin)
str = "I am bold"
annotate!(0, 0, (str, "Helvetica Bold"))

myplot

2 Likes