I need to use a specific font for my ggplots, and i set in in the theme
theme_set(theme_minimal(
base_family="Calibri",
base_size=8
))
however, when i try to use face=bold for my axes it does not seem to apply and shows them as regular, not bold. The minute i remove base_family, the "boldness" is back...
How can i fix this?
ggplot(data = mpg, aes(x = class)) +
geom_bar(stat = "count")+
theme(
axis.title = element_text(face="bold"), #10pt bold
axis.text= element_text(size = 9, colour = "black") #9pt
)