官员软回报

时间:2019-04-24 05:36:22

标签: r officer

如何从官员那里为“ docx”文件“软”退还?要手动执行此操作,请按SHIFT + ENTER并更改标尺选项卡以抵消后续行。但是标题将在目录中显示为一行。

我无法以编程方式重现此内容。

文档中未找到任何方法。

2 个答案:

答案 0 :(得分:0)

软返回不是officer的功能。如果要换行,则必须添加新段落。

library(magrittr)

doc <- read_docx() %>%
  body_add_par("A paragraph", style = "Normal") %>%
  body_add_par("A new paragraph is starting on a new line", style = "Normal")

答案 1 :(得分:0)

如果您只是想在同一段落中输入退货,则可以使用\ n:

library(officer)

my_doc <- read_docx() $>$
  body_add_par("This is on the first line.\nThis is on the next line")