Home > Enterprise >  Frame number in Quarto beamer presentation
Frame number in Quarto beamer presentation

Time:11-03

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.

CodePudding user response:

Alternatively, you can control it yourself like this (see enter image description here

CodePudding user response:

The default theme does not include slide numbering, but you could use one with, e.g. Boadilla:

---
title: "Slide numbering in Beamer"
format: 
  beamer:
    theme: Boadilla
editor: visual
---

enter image description here

  • Related