Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在word文档中添加标题时是否可以删除数字?
my_doc <- read_docx() %>% body_add_par("This is a heading", style = "heading 1") print(my_doc, target = 'dummy.docx')
word 中的结果是1。这是一个标题
但我想没有数字:这是一个标题
officer使用所谓的“初始文档”(或“模板”)中的样式
officer
当您read_docx使用未指定的path参数调用时,位于包目录中的空文档将用作初始文件。所以去那里编辑标题 1 样式。
read_docx
path