使用该ReporteRs
包时,似乎将文本放入页面页脚的唯一方法是在文本正文中放置一个带编号的脚注,并让该脚注在页脚中显示为相同的编号。我希望能够将文本放在页面的页脚中,而前面没有任何编号。
library(ReporteRs)
doc1 <- docx()
doc1 <- addFlexTable(doc1,vanilla.table(head(iris)))
Foot <- Footnote()
Foot <- addParagraph(Foot,"This should not have a number in front of it")
doc <- addParagraph(doc,pot("There should be no number after this",footnote=Foot))
writeDoc(doc1, file = "footnote1.docx")
或者,如果可以在页面底部放置一个段落,那也可以解决我的问题。这可以通过确定页面上可以容纳多少行来完成,但是如果有某种方法可以使最后一段的垂直对齐成为页面底部,那将是理想的。
doc2 <- docx()
doc2 <- addFlexTable(doc2,vanilla.table(head(iris)))
doc2 <- addParagraph(doc2,c(rep("",33),"Text placed by dynamically finding bottom of the page"))
writeDoc(doc2, file = "footnote2.docx")