I\'d like to add latex text to a ggplot2 plot using annotate(). Using expression(), as described here for adding latex to axis labels, does not see
annotate()
expression()
You can use the parse argument, without expression:
parse
expression
p + annotate("text", x=10, y=40, label="text[subscript]", parse=TRUE)