R markdown版本2中的YAML前端问题:添加机构和徽标

时间:2014-10-13 10:15:06

标签: r yaml pandoc r-markdown

是否可以在R markdown版本2的YAML前端添加机构和徽标?

我正在寻找类似的东西

---
title:       "My report"
author:      "me"
institution: "Swansea University"
logo:        "logo.png"
output:
   pdf_document:
   toc: yes
---

1 个答案:

答案 0 :(得分:1)

答案是使用模板文件,但需要对徽标位进行一些调整:

---
title:       "My report"
author:      "me"
output:
   pdf_document:
   toc: yes
   includes:
     in_header: style.tex
---

准备文件" style.tex"与markdown文件位于同一文件夹中,并确保已将R中的工作目录更改为此文件夹。

将以下行添加到" style.tex"文件:

\institute{My institute}
\pgfdeclareimage[width=2cm]{logo}{logo.png}
\usebackgroundtemplate{\pgfuseimage{logo}}

感谢: Inserting logo into beamer presentation using R Markdown