gpt4 book ai didi

r - 无法在 bookdown 中插入图

转载 作者:行者123 更新时间:2023-12-01 01:44:50 25 4
gpt4 key购买 nike

我正在使用 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/中创建的

最佳答案

问题是由于您将图形设备设置为 svg_common.R :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 可以识别的图像格式,例如 pdfpng .

关于r - 无法在 bookdown 中插入图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50654124/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com