如何在乳胶编织图标题中加入希腊字母?

时间:2012-11-04 00:01:12

标签: r latex knitr

我搜索了这个,但无法找到它。在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...

有办法吗?

1 个答案:

答案 0 :(得分:17)

没关系 - 你只需要逃避\为alpha

<<fig.cap='$\\alpha_1$'>>=
 plot(1:5,1:5)
@