我们如何在 R Markdown 标题页上的 beamer 上添加徽标?另外,如何在 beamer R Markdown 中添加用于页脚的 shortinstitute 函数?有人能帮忙提供正确的命令吗?
答案1
对于徽标,那怎么样logo: image
?当然,image.png
在工作目录中加上一个名为所需大小的文件。
梅威瑟:
---
title: "My logo"
author: "Fran"
theme: Madrid
date: "`r Sys.Date()`"
logo: image-example
output: beamer_presentation
---
## My text
This is all.
类似地,对于简短的机构,您可以whatever: foo
在标题中使用自定义模板,您可以在其中进行一些更改,例如:
$if(institute)$
\institute{$institute$}
$endif$
到
$if(institute)$
\institute[$whatever$]{$institute$}
$endif$