How can I list multiple authors and their affiliations on the title slide of a Quarto Beamer presentation?
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