是否可以在R markdown版本2中向YAML正面添加机构和徽标?
我正在寻找这样的东西
---
title: "My report"
author: "me"
institution: "Swansea University"
logo: "logo.png"
output:
pdf_document:
toc: yes
---
最佳答案
答案是使用模板文件,但需要对徽标位进行一些调整:
---
title: "My report"
author: "me"
output:
pdf_document:
toc: yes
includes:
in_header: style.tex
---
在与markdown文件相同的文件夹中准备文档“style.tex”,并确保已将R中的工作目录更改为此文件夹。
将以下行添加到“style.tex”文件中:
\institute{My institute}
\pgfdeclareimage[width=2cm]{logo}{logo.png}
\usebackgroundtemplate{\pgfuseimage{logo}}
谢谢:
Inserting logo into beamer presentation using R Markdown
关于r - R markdown版本2中的YAML前端问题: add an institution and logo,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26337584/