无法在 bookdown 中插入情节
Can't insert plots in bookdown
我正在使用 bookdown 为 R 生成注释。显示错误的最小 bookdown 示例:
https://github.com/DavisBrian/bookdown_error
一切都很好,直到我尝试添加一个情节 (dataviz.Rmd)。构建本书时出现以下错误:
! LaTeX Error: File `dataviz_files/figure-latex/plotxyx-1' not found.
Error: Failed to compile rclassnotes.tex. See rclassnotes.log for more info.
In addition: Warning message:
In parse_packages(logfile, quiet = c(TRUE, FALSE, FALSE)) :
Failed to find a package that contains dataviz_files/figure-latex/plotxyx-1
Execution halted
Exited with status 1.
我运行这个在:
> sessionInfo()
R version 3.4.4 (2018-03-15)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: macOS High Sierra 10.13.4
Matrix products: default
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] compiler_3.4.4 backports_1.1.2 bookdown_0.7 magrittr_1.5 rprojroot_1.3-2 htmltools_0.3.6 tools_3.4.4
[8] yaml_2.1.18 Rcpp_0.12.16 stringi_1.1.7 rmarkdown_1.9 knitr_1.20 xfun_0.1 stringr_1.3.0
[15] digest_0.6.15 evaluate_0.10.1
关于从这里到哪里去的任何想法?
编辑:
它看起来非常类似于:
https://github.com/rstudio/bookdown-demo/issues/3
和
https://github.com/rstudio/bookdown/issues/342
请注意,Windows 和 Mac OSX 都有这个问题。我不认为这是其中一个组件的简单软件安装错误。
文件似乎是在 _bookdown_files/dataviz_files/figure-latex/ 中创建的,暂时在 _dataviz_files/figure-latex/
问题是由于您在 _common.R
中将图形设备设置为 svg
: https://github.com/DavisBrian/bookdown_error/blob/9f4078a/_common.R#L13
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
cache = FALSE,
out.width = "70%",
fig.align = 'center',
fig.width = 6,
fig.asp = 0.618, # 1 / phi
fig.show = "hold",
dev = "svg"
)
LaTeX 本身不支持 SVG 图像(至少现在是这样)。您必须使用特殊的 LaTeX 包,或者使用 LaTeX 可以识别的图像格式,例如 pdf
或 png
.
我正在使用 bookdown 为 R 生成注释。显示错误的最小 bookdown 示例:
https://github.com/DavisBrian/bookdown_error
一切都很好,直到我尝试添加一个情节 (dataviz.Rmd)。构建本书时出现以下错误:
! LaTeX Error: File `dataviz_files/figure-latex/plotxyx-1' not found.
Error: Failed to compile rclassnotes.tex. See rclassnotes.log for more info.
In addition: Warning message:
In parse_packages(logfile, quiet = c(TRUE, FALSE, FALSE)) :
Failed to find a package that contains dataviz_files/figure-latex/plotxyx-1
Execution halted
Exited with status 1.
我运行这个在:
> sessionInfo()
R version 3.4.4 (2018-03-15)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: macOS High Sierra 10.13.4
Matrix products: default
BLAS: /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
LAPACK: /Library/Frameworks/R.framework/Versions/3.4/Resources/lib/libRlapack.dylib
locale:
[1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
attached base packages:
[1] stats graphics grDevices utils datasets methods base
loaded via a namespace (and not attached):
[1] compiler_3.4.4 backports_1.1.2 bookdown_0.7 magrittr_1.5 rprojroot_1.3-2 htmltools_0.3.6 tools_3.4.4
[8] yaml_2.1.18 Rcpp_0.12.16 stringi_1.1.7 rmarkdown_1.9 knitr_1.20 xfun_0.1 stringr_1.3.0
[15] digest_0.6.15 evaluate_0.10.1
关于从这里到哪里去的任何想法?
编辑:
它看起来非常类似于: https://github.com/rstudio/bookdown-demo/issues/3 和 https://github.com/rstudio/bookdown/issues/342
请注意,Windows 和 Mac OSX 都有这个问题。我不认为这是其中一个组件的简单软件安装错误。
文件似乎是在 _bookdown_files/dataviz_files/figure-latex/ 中创建的,暂时在 _dataviz_files/figure-latex/
问题是由于您在 _common.R
中将图形设备设置为 svg
: https://github.com/DavisBrian/bookdown_error/blob/9f4078a/_common.R#L13
knitr::opts_chunk$set(
comment = "#>",
collapse = TRUE,
cache = FALSE,
out.width = "70%",
fig.align = 'center',
fig.width = 6,
fig.asp = 0.618, # 1 / phi
fig.show = "hold",
dev = "svg"
)
LaTeX 本身不支持 SVG 图像(至少现在是这样)。您必须使用特殊的 LaTeX 包,或者使用 LaTeX 可以识别的图像格式,例如 pdf
或 png
.