删除Rmarkdown中的块标签和进度条的打印
我正在创建一个Rmarkdown,并且有很多有用的错误消息,比如下面例子中的“我在这里”。 但是,使用标签输出很难找到有用的错误消息。 你如何切换标签打印,但保留消息?
---
title: "label_example"
output: pdf_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(fig.width=12
, fig.height=5.5
, echo=FALSE
, warning=FALSE
, message=FALSE
, results='asis')
```
## R Markdown
```{r cars}
message("I am Here")
summary(cars)
```
## Including Plots
You can also embed plots, for example:
```{r pressure, echo=FALSE}
plot(pressure)
```
| ......... | 不含R代码的普通文本14%
| ................... | 29%标签:设置(带选项)
处理文件:label_example.Rmd 1 $ include:logi FALSE的列表
| ............................ | 43%普通文本没有R代码
| ..................................... | 57%的标签:汽车| ............................................ .. | 71%的普通文本没有R代码
| ................................................. ....... | 86%标签:压力(带选项)1 $ echo列表:logi FALSE
| ................................................. ................ | 没有R代码的100%普通文本
/ usr / lib / rstudio-server / bin / pandoc / pandoc + RTS -K512m -RTS label_example.utf8.md --to latex --from markdown + autolink_bare_uris + ascii_identifiers + tex_math_single_backslash --output label_example.pdf --template / default -1.17.0.2.tex - highlight-style tango --latex-engine pdflatex --variable graphics = yes --variable'geometry:margin = 1in'我在这里输出文件:label_example.knit.md
链接地址: http://www.djcxy.com/p/33479.html上一篇: Remove print of chunk labels and progress bar in Rmarkdown
下一篇: Why does rendering a pdf from rmarkdown require closing rstudio between renders?