這裏是我的問題幻燈片:在在HTML5繪圖與knitr幻燈片
這個幻燈片中的純文本
# Title
```{r plot, echo=FALSE}
library("ggplot2")
x <- seq(-1,1,0.05)
y <- x^3/3-x^2 + rnorm(41,sd=0.1)
qplot(x,y)+geom_smooth()
```
- item 1
- item 2
而且我想:
- 隱藏評論文字(## blahblah)
- 隱藏文本「塊式情節」
- 讓劇情更小,從而使項目可以顯示
您能給我一些提示?謝謝。
閱讀[爲knitr精彩的文檔(http://yihui.name/knitr/options)。你需要看'fig.cap','warning'和'fig.height'和'fig.width – mnel