I am giving a presentations over the course of two days. My current code looks like this:
\documentclass[12pt,aspectratio=169]{beamer}
\AtBeginSection[]
{
\begin{frame}
\frametitle{Test}
\tableofcontents[currentsection,subsectionstyle=shaded]
\end{frame}
}
\AtBeginSubsection[]
{
\begin{frame}
\frametitle{Test}
\tableofcontents[currentsection,currentsubsection]
\end{frame}
}
\title{Test}
\begin{document}
\begin{frame}[t,plain]
\titlepage
\end{frame}
\begin{frame}{TOC}
\tableofcontents
\end{frame}
% Day 1
\section{1}
\section{2}
% Day 2
\section{3}
\section{4}
\end{document}
Is there any way I can show days in the TOC? Something like:
Day 1:
- Section 1
- Section 2
Day 2:
- Section 3
- Section 4

\sectionfor the days and\subsectionfor the actual sections, butbeameralso supports\parts. See this example: https://tex.stackexchange.com/a/243530/47927 – Jasper Habicht Jul 02 '22 at 13:34