-1

How can I list multiple authors and their affiliations on the title slide of a Quarto Beamer presentation?

captain
  • 543
  • 1
  • 3
  • 20

2 Answers2

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


multiple authors with affiliations


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
---

Rendered result of the above example

tarleb
  • 19,863
  • 4
  • 51
  • 80