1

我正在尝试使用papajar-markdown 中的格式制作文档。问题是 R 无法编译 pdf,因为它找不到我尝试使用 `knitr::include_graphics() 导入的图像。

这是我的 Yaml 标头:

---
title             : "Something"
author: 
  - name          : "my name"
bibliography      : ["Draft.bib"]
floatsintext      : yes
figsintext        : yes
figurelist        : no
tablelist         : no
footnotelist      : no
linenumbers       : yes
link-citations    : yes
mask              : no
draft             : no
documentclass     : "apa6"
classoption       : "man"
output            : 
  pdf_document : papaja::apa6_pdf
header-includes:
  - \usepackage{setspace}
  - \AtBeginEnvironment{tabular}{\singlespacing}
  - \AtBeginEnvironment{lltable}{\single  espacing}
  - \AtBeginEnvironment{tablenotes}{\doublespacing}
  - \captionsetup[table]{font={stretch=1.5}}
  - \captionsetup[figure]{font={stretch=1.5}}
---

This is the chunk where I am trying to import the image:

```{r colors}
knitr::include_graphics("figures/colors.png")
```

请注意,我已经检查了我的 wd,并且我的图像路径中没有任何空格

最后,这是 R 在尝试编译时打印的错误:

!!! Error: Input file `Draft_files/figure-latex/colors-1.pdf' not found!

Quitting from lines 87-88 (Draft.Rmd) 
Error in magick_image_readpath(enc2native(path), density, depth, strip) : 
  R: unable to open image `Draft_files/figure-latex/colors-1.png': No such file or directory @ error/blob.c/OpenBlob/2874
Calls: <Anonymous> ... in_dir -> plot_crop -> <Anonymous> -> magick_image_readpath
Execution halted

我也尝试过更改路径,./figures/colors.png但结果是一样的。

任何帮助将不胜感激!

4

1 回答 1

2

这是一个已知错误已在knitr的开发版本中修复。请尝试开发版本

remotes::install_github('yihui/knitr')

或等待下一个版本的knitr (v1.28) 出现在 CRAN 上(希望在几天后)。

或者,您可以在块crop=NULL上设置块选项,例如

```{r colors, crop=NULL}
于 2020-02-06T15:55:31.733 回答