parent
4dd8bb4676
commit
b2f36a1cfc
|
@ -12,3 +12,4 @@ libs
|
||||||
_main.*
|
_main.*
|
||||||
bookdown*
|
bookdown*
|
||||||
tmp-pdfcrop-*
|
tmp-pdfcrop-*
|
||||||
|
figures
|
||||||
|
|
|
@ -0,0 +1,18 @@
|
||||||
|
library(stringr)
|
||||||
|
library(purrr)
|
||||||
|
|
||||||
|
chapters <- dir("_bookdown_files", full.names = TRUE, pattern = "_files$")
|
||||||
|
|
||||||
|
figures <- dir(chapters, full.names = TRUE, pattern = "-latex")
|
||||||
|
|
||||||
|
name <- figures %>%
|
||||||
|
dirname() %>%
|
||||||
|
basename() %>%
|
||||||
|
str_replace("_files", "")
|
||||||
|
|
||||||
|
out_path <- file.path("figures", name)
|
||||||
|
|
||||||
|
dir.create("figures/")
|
||||||
|
out_path %>% walk(dir.create)
|
||||||
|
|
||||||
|
map2(figures, out_path, ~ file.copy(dir(.x, full.names = TRUE), .y))
|
Loading…
Reference in New Issue