Search code examples
quartobeamer

Multiple authors and their affiliations on Quarto Beamer presentation title slide


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


Solution

  • 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