如何将R输出应用为LaTex部分?

时间:2014-01-30 02:08:47

标签: r latex knitr sweave

假设我在x.rnw文件中有一个R块,比如

<<section1, echo=F>>=
> x <- "A_B_C"
> result <- paste0("\\section {",gsub("_","\\\\_",x),"}")
> cat(result)
\section {A\_B\_C}
@

如何在 Sweave knitr 期间让输出\section {A\_B\_C}作为\section执行?

0 个答案:

没有答案