我正在尝试用knitr创建的图形标题中的一些文字。我在.Rnw文件中有以下代码,我使用knitr将其转换为.tex文件:
<<plot_setosa, fig.cap="A plot of $\\textit{setosa}$">>=
plot(iris[iris$Species == "setosa",])
@
如何在图标题中标注setosa?
答案 0 :(得分:7)
尝试:
<<plot_setosa, fig.cap="A plot of \\textit{setosa}">>=
plot(iris[iris$Species == "setosa",])
@
无需$$