rmarkdown beamer演示中的多个作者多行

时间:2017-09-17 03:08:02

标签: r r-markdown

我想在Rmarkdown beamer演示中将作者的名字分为两行。我的YAML如下:

NetworkManager.StartHost()

但是,作者的名字仍然印在同一条线上。我怎么能分成两个?

1 个答案:

答案 0 :(得分:3)

如果您在第一位作者之后使用TeX命令\newline,则会在第二行上呈现。

---
title: "***"
author:
- Author One\newline
- Author Two
date: "`r format(Sys.time(), '%d %B %Y')`"
fontsize: 14pt
output:
  beamer_presentation:
    fig_height: 5
    fig_width: 8
    highlight: tango
    theme: metropolis
incremental: true
---