如何从官员那里为“ docx
”文件“软”退还?要手动执行此操作,请按SHIFT + ENTER
并更改标尺选项卡以抵消后续行。但是标题将在目录中显示为一行。
我无法以编程方式重现此内容。
文档中未找到任何方法。
答案 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")