我想在Rmarkdown beamer演示中将作者的名字分为两行。我的YAML如下:
NetworkManager.StartHost()
但是,作者的名字仍然印在同一条线上。我怎么能分成两个?
答案 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
---