我搜索了这个,但无法找到它。在knitr文档中,我想将$ \ alpha_1 $作为标题添加到这样的情节中:
<<fig.cap='$\alpha_1$'>>=
plot(1:5,1:5)
@
尝试编织这个错误
! Text line contains an invalid character.
l.172 ...axwidth]{figure/plotSigma1} \caption[$^^G
lpha_1$]{$^^Glpha_1$\label...
有办法吗?
答案 0 :(得分:17)
没关系 - 你只需要逃避\为alpha
<<fig.cap='$\\alpha_1$'>>=
plot(1:5,1:5)
@