Hi everyone,
How can I add emojis to a ggplot2 title. All the examples I found online only show how to use emojis as geoms or how to insert them in the axis texts. This is what I attempted but the final result is two hollow rectangles:
EDIT: I'm running Linux. My distribution is based on Ubuntu (it's Pop OS).
ggplot2::ggplot(data = mtcars, mapping = ggplot2::aes(x = wt, y = mpg)) +
ggplot2::geom_point() +
ggplot2::labs(title = emo::ji("sun")) +
ggplot2::theme(plot.title = ggtext::element_markdown())