latexquartobeamer

Frame number in Quarto beamer presentation


I am preparing a Quarto presentation using beamer and would like to add the frame number at the bottom of each slide (analogous to the slide-number option in revealjs). Could anybody tell me how I can do this?

I already figured out that the slide-number option does not exist for beamer.


Solution

  • Alternatively, you can control it yourself like this (see here)

    ---
    title: "Presentation"
    format: 
      beamer: 
        aspectratio: 32
        navigation: horizontal
        header-includes: |
           \setbeamertemplate{navigation symbols}{}
           \setbeamertemplate{footline}[page number]
    ---
    
    # Intro
    
    
    ## second slide
    

    enter image description here