I would like to include the mathematical sign for a multiplication (like the lower-case x) in a plot title.
I have tried using latex2exp to no avail - can someone help me with this?
The reprex code is this:
library(ggplot2)
library(latex2exp)
ggplot(data = data.frame(number = round(rnorm(200, mean=55, sd=5))),
aes(x = number)) + geom_density() +
ggtitle(TeX("Title containing times sign here: $\\times$"))
And it produces this outcome:
I would like the square (indicating an unrecognized sign) to display as this sign:
. It seems that other signs work (e.g. alpha) using this approach but I cannot figure out why the times sign poses an issue.
I'm not set on using latex2exp for the solution, as long as it works with the latex font (LM Roman 10).
Thanks a lot in advance.

