繁体   English   中英

如何在 R markdown 中的投影仪演示文稿的标题页中添加更多信息?

[英]How to add more information in the title page of beamer presentation in R markdown?

我试过这样的方法,

title: "Course"
author: |
        |           %email:
        |           %office
output: 
  beamer_presentation

但是,它会在每张幻灯片的左下角显示块“作者”的所有信息。

我希望得到这样的结果,

This is the title

Author

email:
office:

Date

谢谢。

您可以设置\\author[short form for footline]{long form for titlepage}的短作者选项来修改脚注中显示的文本:

---
title: "Course"
author: |
        |           %email:
        |           %office
output: 
  beamer_presentation:
    theme: Dresden
header-includes:
   - \AtBeginDocument{\author[Author]{Author\\ email:\\ office:}}
---

test

在此处输入图片说明

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM