是否可以在R markdown版本2的YAML前端添加机构和徽标?
我正在寻找类似的东西
---
title: "My report"
author: "me"
institution: "Swansea University"
logo: "logo.png"
output:
pdf_document:
toc: yes
---
答案 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