我正在编写一个Rmd文件,该文件将编织到Word中的报表中。
我正在尝试为图形创建标签,以及对其的交叉引用,如下所示:


```{r TotalCarStock, echo=FALSE, fig.cap="Forecasted versus actual car stock", out.width = '100%'}
knitr::include_graphics("C:/Usr/WP vehicle stock/TotalCarStock.jpg")
```

我在这里看到的所有讨论都表明在创建pdf文档时,此方法可以正常工作,但是我希望将Rmd文件“编织”到Word文档中。正确创建Word文档,除了标签和交叉引用保留空白。

最佳答案

@LaurentFrankx最后,我找到了解决方案:如果在YAML header 的bookdown::word_document2:行中使用word_document而不是output,您将能够得到以下结果,如下所示。

r - RMarkdown for Word文档中的交叉引用-LMLPHP

---
title: "VHS Report"
author: "Laurent Franckx"
date: "14 September 2018"
output:
  bookdown::word_document2:
  fig_caption: yes
#pdf_document: default
---

As illustrated in Figure \@ref(fig:TotalCarStock), etc, etc. However, `out.width = '100%'` in an R chunk cannnot be specified when we want to produce a `.docx` output, because `out.width = '100%'` is used for creating `.pdf` outcome.

```{r TotalCarStock, echo=FALSE, fig.cap="Forecasted versus actual car stock"}
knitr::include_graphics("https://i.stack.imgur.com/JlNbf.png")
```
bookdown::word_document2:和其他***_document2函数由@Yihui创建。我们可以在官方guidebook中看到它们的用法。这些使我们能够放置自动编号,如here中所述。

有关进一步的自定义,我们可以查阅标题为Happy collaboration with Rmd to docx的文章。尽管本文介绍了如何使用word_document配置格式,但是这些技巧对于更新的函数word_document2仍然有效且有用。

09-29 19:44