R-Markdown不再编织

时间:2019-05-05 20:02:34

标签: r r-markdown

在过去的几年中,我已经创建了一个包含R注释的广泛的markdown文件。今天,该文件不再能正确编织,并且任何备份版本都不能正确编织。输出是正确输出和代码清单之间的交叉;有时以##为前缀。

---
title: 'The R Companion'
fontsize: 11pt
toc: true
toc_depth: 4
geometry: "top = 2cm, bottom = 1.5cm, left = 2cm, right = 1.5cm"
output: pdf_document

---
\pagebreak

```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(tidy.opts=list(width.cutoff=60),tidy=TRUE)
knitr::opts_chunk$set(fig.height = 3.5, fig.width = 7)

library(readr)
library(ggplot2)
library(knitr)
library(kableExtra)
library(lubridate)
library(dplyr)
library(tibble)
library(ggthemes)
library(RColorBrewer)
```

###Basic Data Manipulation

####Vector creation 
```{r}
a <- 1:5
b <- 6:10
c <- append(a,b)
print(c)
# Append after c[4].
append(c, 4.5, after=4)
# Append before c[0].
append(c, c(-1, 0), after = 0)
```

输出(下面)只有15个TOC列表中的两个,标题尚未编织,并且输出不完整/错误。 RStudio 1.2.1335,R 3.6.0。,Rmarkdown 1.12。谢谢。

The R Companion
Contents
Creating and tidying data . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 9 GraphicsI:Plot,axes,titleandlegend. .............................. 20
1
###Basic Data Manipulation ####Vector creation
## [1] 1 2 3 4 5 6 7 8 910
##  [1]  1.0  2.0  3.0  4.0  4.5  5.0  6.0  7.0  8.0  9.0 10.0
##  [1] -1  0  1  2  3  4  5  6  7  8  9 10   

1 个答案:

答案 0 :(得分:0)

尝试安装formatR软件包。在安装之前,它对我不起作用。 我只运行了您的代码,这是我用doc针织词得到的输出。 这是您要找的吗?

The R Companion

Basic Data Manipulation
Vector creation
a <- 1:5
b <- 6:10
c <- append(a, b)
print(c)
##  [1]  1  2  3  4  5  6  7  8  9 10
# Append after c[4].
append(c, 4.5, after = 4)
##  [1]  1.0  2.0  3.0  4.0  4.5  5.0  6.0  7.0  8.0  9.0 10.0
# Append before c[0].
append(c, c(-1, 0), after = 0)
##  [1] -1  0  1  2  3  4  5  6  7  8  9 10