RT 在 LaTex 中使用 Knitr 和內部程式碼塊

Knitr 是一個 R 包,它允許我們將 R 程式碼與 LaTeX 程式碼混合在一起。實現此目的的一種方法是內部程式碼塊。這個 apporach 如下所示。

# r-noweb-file.Rnw
\documentclass{article}    
\begin{document}
This is an Rnw file (R noweb).  It contains a combination of LateX and R.

<<code-chunk-label>>=
print("This is an R Code Chunk")
x <- seq(1:10)
y <- seq(1:10)
plot(x,y)  # Brownian motion
@

\end{document}