How can I list multiple authors and their affiliations on the title slide of a Quarto Beamer presentation?
Asked
Active
Viewed 551 times
2 Answers
4
Try as following,
---
title: "Multiple authors"
format: beamer
keep-tex: true
author:
- John Doe\inst{1}
- John Roe\inst{2}
institute:
- \inst{1} affiliation for John Doe
- \inst{2} affiliation for John Roe
---
## Slide 1
Though I think the above approach is the better one, but the following also works,
---
title: "Multiple authors"
format: beamer
author:
- John Doe$^1$
- John Roe$^2$
institute:
- $^1$University 01
- $^2$University 02
---
## Slide 1

shafee
- 15,566
- 3
- 19
- 47
1
I believe that the Beamer template currently doesn't support the usual affiliations structure that other templates offer. Instead, the affiliations must be given in the institute
field:
---
title: "Test"
authors:
- You
- Me
institute:
- ACME Corp.
- Lorem Ipsum University
---

tarleb
- 19,863
- 4
- 51
- 80