- 已编辑
问题如题所示,一个可重复的例子如下
- 打开 RStudio,创建 bookdown 项目
bookdown:::bookdown_skeleton(path = "bookdown-test")
- 除了
index.Rmd
外,其它 Rmd 文件都放在目录bookdown-test/rmd/
下
dir.create(path = "bookdown-test/rmd/")
mv_rmds <- setdiff(list.files(path = "bookdown-test/",pattern = ".Rmd$"),"index.Rmd")
rmds_path <- paste0("bookdown-test/",mv_rmds)
file.copy(from = rmds_path,to="bookdown-test/rmd/",overwrite = T)
file.remove(rmds_path)
_bookdown.yml
里添加三行
new_session: yes
rmd_subdir:
- "rmd/"
- 运行
setwd("~/bookdown-test")
bookdown::render_book('index.Rmd',output_dir = 'docs','all')
报错信息
Error in render_book(input, fmt, ..., clean = clean, envir = envir, output_dir = output_dir, :
All input files must be under the current working directory
环境信息
xfun::session_info(packages = c('bookdown','rmarkdown'))
R version 3.5.1 (2018-07-02)
Platform: x86_64-w64-mingw32/x64 (64-bit)
Running under: Windows >= 8 x64 (build 9200), RStudio 1.1.456
Locale:
LC_COLLATE=Chinese (Simplified)_China.936 LC_CTYPE=Chinese (Simplified)_China.936
LC_MONETARY=Chinese (Simplified)_China.936 LC_NUMERIC=C
LC_TIME=Chinese (Simplified)_China.936
Package version:
base64enc_0.1.3 bookdown_0.7.18 digest_0.6.17 evaluate_0.11
glue_1.3.0 graphics_3.5.1 grDevices_3.5.1 highr_0.7
htmldeps_0.1.1 htmltools_0.3.6 jsonlite_1.5 knitr_1.20
magrittr_1.5 markdown_0.8 methods_3.5.1 mime_0.5
Rcpp_0.12.18 rmarkdown_1.10.12 stats_3.5.1 stringi_1.2.4
stringr_1.3.1 tinytex_0.8 tools_3.5.1 utils_3.5.1
xfun_0.3.8 yaml_2.2.0
Pandoc version: 1.19.2.1