When I make a map using ggplot2 and attempt to italicize part of the figure title using a combination of expression() and italic() usi
ggplot2
expression()
italic()
bquote or substitute should work,
a = 'text' plot(1,1, main=bquote(italic(.(a)))) plot(1,1, main=substitute(italic(x), list(x=a)))