R - put only some words of the titles in italic with substitute()

02 Jan 2018

subTit <- "Cell lines vs. random data"
subTit <- substitute(x ~ italic("(MoC)"), list(x=subTit))

# => will result in: Cell lines vs. random data (MoC) with only "(MoC)" in  italic
[ R  plot  function  ]