8

我希望能够使用officer R包交叉引用word 文档中的表格或图形。

到目前为止,我遇到过这些材料,但它们似乎没有解决方案: https ://davidgohel.github.io/officer/articles/word.html#table-and-image-captions 和一个类似的问题 添加标题docx中的flextable

在这两个中,我只能插入一个标题作为 2 级标题,而不是真正的表格标题。

我希望在 Word 中能够做的是插入 - > 交叉引用并转到参考类型:表格并在那里查看我的标题。现在我只能看到编号项目下的标题。

此功能是否存在于官员或其他任何地方?

4

2 回答 2

7

简而言之,表格编号使用该{ SEQ \\@ arabic }模式,但对它们的引用使用{ REF bookmark \h }. 我们可以使用它来制作可以引用 SEQ 字段的新代码。

代码:

ft <- regulartable(head(iris)) # create flextable
str <- paste0(' REF ft \\h ')  # create string to be used as reference to future bookmark

doc <- read_docx() %>%
  body_add_par('This is my caption' , style = 'Normal') %>% # add caption
  slip_in_seqfield(str = "SEQ Table \\@ arabic",           
                   style = 'Default Paragraph Font', 
                   pos = "before") %>% # add number for table
  body_bookmark('ft') %>%   # add bookmark on the number
  slip_in_text("Table ", 
               style = 'Default Paragraph Font', 
               pos = "before") %>% # add the word 'table'
  body_add_flextable(value = ft, align = 'left') %>% # add flextable
  body_add_break() %>%  # insert a break (optional)
  slip_in_text('As you can see in Table', 
               style = 'Default Paragraph Font', 
               pos = 'after') %>% # add the text you want before the table reference
  slip_in_seqfield(str = str,  
                   style = 'Default Paragraph Font', 
                   pos = 'after') %>% # add the reference to the table you just added
  slip_in_text(', there are a lot of iris flowers.', 
               style = 'Default Paragraph Font', 
               pos = 'after') %>% # add the rest of the text 
  print('Iris_test.docx') # print

希望这可以帮助 :)

于 2019-04-17T23:37:40.697 回答
1

只是为了记录,您现在可以通过使用{crosstable}包中的一些辅助函数更容易地做到这一点。

免责声明:我是该软件包的开发人员,这些功能受到@morgan121 回答的极大启发。谢谢摩根!

这是一个例子:

library(officer)
library(crosstable)
library(ggplot2)
options(crosstable_units="cm")

ft = regulartable(head(iris)) 
my_plot = ggplot(data = iris ) +
  geom_point(mapping = aes(Sepal.Length, Petal.Length))

doc = read_docx() %>% 
  body_add_title("Dataset iris", 1) %>%
  body_add_normal("Table \\@ref(table_iris) displays the 6 first rows of the iris dataset.") %>%
  body_add_flextable(ft) %>%
  body_add_table_legend("Iris head", bookmark="table_iris") %>%
  body_add_normal("Let's add a figure as well. You can see in Figure \\@ref(fig_iris) that sepal length is somehow correlated with petal length.") %>%
  body_add_figure_legend("Relation between Petal length and Sepal length", bookmark="fig_iris") %>% 
  body_add_gg2(my_plot, w=14, h=10, scale=1.5)

print(doc , 'Iris_test.docx')    

有关https://danchaltiel.github.io/crosstable/articles/crosstable-report.html的更多信息。

与 morgan121 的代码一样,您必须选择 MS Word 中的所有文本并按两次 F9 才能正确更新数字。

于 2021-03-18T12:01:39.443 回答