您有2个文件:1)商业和2)技术 这两者永远不应该在以下意义上分歧: 商业文档中的任何内容必须,逐字记录在技术文档中。
使用Rmd / Bookdown可以在R中使用以下内容吗?
本着“编写你希望拥有的代码”的精神:
Commercial.Rmd
```{r child = 'chapter_01.Rmd'}
```
Ch_01.Rmd:
## Section A
This is the sales by quarter:
```{r sales_by_quarter, results='asis'}
```
Technical.Rmd
```{r child = 'chapter_01_technical.Rmd'}
```
chapter_01_technical.Rmd:
</ Some magic to pull in 'Section A' from 'chapter_01.Rmd' \>
### Technical subsection
We define sales according to .... and handle missing data ...
```r sales_missing_data_summary
```
我知道以下内容:
将文件包含在另一个
中```{r child = 'chapter1.Rmd'}
```
包括R代码
```{r shared_code}
```
代码在shared.R中定义:
#shared.R
#This code snippet is included in multiple places
## @knitr shared_code
a <- 10
b <- 0.05