使用 R 中的 ReporteRs 更改 docx 中的行距

Change line spacing in docx using ReporteRs in R

我正在使用 R 中的 ReporteRs 包创建一个 word 文档,我想将段落的间距从单倍间距更改为 1.5 倍间距。

我想我可以将每一行作为一个新段落输入,并在每一行的开头放置一个缓冲区 "paragraphs" 但我正在寻找一种更简洁的方法。

如果可以的话,我愿意使用另一个包。

您可以在空的 Word 文档中定义第 space 1.5 行(名称 myparag)的段落,并将其重新用作模板(文件名:template.docx)。

doc <- docx() 
styles( doc ) # check value `myparag` is in the available paragraph styles
doc <- addParagraph(doc, "Blah blah blah", stylename = "myparag")
## docx example 
doc = docx( )

# Footnote definition
par1 = pot("About this reference", textItalic(font.size = 8) )
par2 = pot("Omni ab coalitos pro malivolus obsecrans graviter 
           cum perquisitor perquisitor pericula saepeque inmunibus coalitos ut.", 
           textItalic(font.size = 8) )

Footnote = Footnote( )
Footnote = addParagraph( Footnote, set_of_paragraphs( par1, par2 ), 
  parProperties(padding.top = 15))

# add text in the doc with previously defined footnote
my_pot = pot("Blah blah blah." ) + 
  pot(" Here is a note.", footnote = Footnote)
doc = addParagraph(doc, my_pot )

writeDoc( doc, file = "footnote.docx" )