• R语言已解决
  • 【已解决】bookdown 项目 new_session: yes 和 rmd_subdir: true 冲突

问题如题所示,一个可重复的例子如下

  1. 打开 RStudio,创建 bookdown 项目
bookdown:::bookdown_skeleton(path = "bookdown-test")
  1. 除了 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)
  1. _bookdown.yml 里添加三行
new_session: yes
rmd_subdir:
  - "rmd/"
  1. 运行
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

    yihui 原来是故意设置的,有没有可能去掉这条约束,感觉这条约束怪怪的,把 Rmd 文件集中放在一个文件夹下,K-M 方式就不适用了

    场景:当 Rmd 文件有十个八个以上,都放在项目根目录下,根目录下文件/文件夹看起来就太多了,找起来不方便, 而 Rmd 文件的内容又要求最好启用 new_session: yes

      Cloud2016 这个限制的主要原因是因为 K-M 方式编译如果有生成图片的话,图片会在子文件夹中,在合并 .md 文件时,我还需要另外处理这些图片路径。这个额外的工作对我来说太麻烦了,虽然并不是完全做不到。

        6 个月 后

        yihui. 谢大大,请问有没有什么办法可以接着上次续渲染呢,我一个项目总是有几百个rmd文件,如果出错了,每次都是从头开始,真的非常耗费时间呢,特别是出错的文件就在末尾几个。试过cache这个,可能我方法不对,没有成功。另外renderbook是否可以有一个参数选择跳过错误的rmd?继续下一个? 谢谢您百忙之中抽一点时间指点,在GitHub上我叫wikithink,再次谢谢

          kakaymi 不同的问题请开新帖,不要无限回复同一个帖子,码农最怕的就是一个帖子永远也关不死,就像一个无限任务一样,让人心力交瘁。

          要求编译速度的话就用 bookdown::serve_book()https://bookdown.org/yihui/bookdown/preview-a-chapter.html 它默认使用预览模式:https://bookdown.org/yihui/bookdown/preview-a-chapter.html 即只编译被修改过的 Rmd 文件。

          Cloud2016 更改标题为「【已解决】bookdown 项目 new_session: yes 和 rmd_subdir: true 冲突
          7 个月 后