我有一个Rmarkdown文档,我正在输出到Word,我正在尝试在包含标题和作者的标题上方的页面顶部插入公司徽标。
我还没有找到解决方法。我尝试将pandoc_args
用于--include-in-header
,但这并不成功。我不确定我是否正确使用它。
是否可以在标题上方添加图像?
---
title: "Untitled"
author: "r.bot"
date: "Thursday, January 1, 2015"
output:
word_document:
fig_caption: yes
fig_height: 5
fig_width: 5
reference_docx: template.docx
pandoc_args: [
"--include-in-header", "C:\\path\\to\\file.png"
]
---
This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see <http://rmarkdown.rstudio.com>.
答案 0 :(得分:4)
可以使用Word模板中的图像标题。在Word 2010中go:insert header - &gt;图像并添加选择的图像。将此文档另存为template_image.docx
与.Rmd文件位于同一文件夹中。
然后,在YAML标题中:
---
title: "Untitled"
author: "Simon"
date: "Thursday, May 21, 2015"
output:
word_document:
fig_caption: yes
fig_height: 5
fig_width: 5
reference_docx: template_image.docx
---
编织.Rmd文件,输出应包含图像。