我正在尝试使用papaja
r-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
但结果是一样的。
任何帮助将不胜感激!