R块代码保留在Beamer帧内

时间:2012-11-17 05:31:58

标签: r knitr beamer

这是我的MWE代码。

\documentclass{beamer}
\begin{document}

<<setup, include=FALSE>>=
# smaller font size for chunks
opts_chunk$set(size = 'footnotesize')
options(width=60)
@


\begin{frame}[fragile]
\frametitle{Test1}

<<boring-random>>=
y <- c(5, 7, 15, 17, 17, 19)
Trt <- gl(n = 3, k = 2, length = 3 * 2, labels = paste("Trt",
1:3, sep = ""), ordered = FALSE)
Data <- data.frame(Trt, y)
Fit1 <- aov(formula = y ~ Trt, data = Data, contrasts = list(Trt = "contr.sum"))
ANOVA1 <- anova(Fit1)
Coeffs1 <- coefficients(Fit1)
@
\end{frame}

\end{document}

enter image description here

我正努力将R块代码保留在Beamer帧中。我想知道管理R块代码的有效方法是什么,以便它们保留在Beamer框架内。感谢

1 个答案:

答案 0 :(得分:5)

最好的方法是按tidy关闭tidy=FALSE选项,然后手动断开你的行。

<<boring-random, tidy=FALSE>>=
y <- c(5, 7, 15, 17, 17, 19)
Trt <- gl(n = 3, k = 2, length = 3 * 2, labels = paste("Trt",
  1:3, sep = ""), ordered = FALSE)
Data <- data.frame(Trt, y)
Fit1 <- aov(formula = y ~ Trt, data = Data,
  contrasts = list(Trt = "contr.sum"))
ANOVA1 <- anova(Fit1)
Coeffs1 <- coefficients(Fit1)
@

这将始终有效。另一种方法是在widthknitr FAQ 8)中设置较小的options(),您可能需要尝试几次才能获得理想的width。在你的情况下,60显然太大了。