Is there a way to generate a table of contents only listing the sections of the appendix in Beamer?
Essentially I want to do exactly this, but for a Beamer presentation.
For some reason, the proposed solutions don't work for me. Even just including etoc in my beamer document gives loads of error messages (while the sample code provided in the answer of the above question works just fine).
Code example:
\documentclass{beamer}
\usepackage[utf8]{inputenc}
% \usepackage{etoc} % causes errors
\title{Separate TOC for Appendix}
\author{Anonymous}
\begin{document}
\frame{\titlepage}
\begin{frame}{TOC}
\tableofcontents
\end{frame}
\section{Section A}
\section{Section B}
\section{Section C}
\appendix
\begin{frame}{Appendix TOC}
\tableofcontents
\end{frame}
\section{Appendix A}
\section{Appendix B}
\end{document}
I'd like the second table of contents to list Appendix A and Appendix B.

\section{Appendix B}I get precisely what you are asking for. That is, replace\section{Appendix B}by `\section{Appendix B} \begin{frame} \frametitle{Some content}\end{frame}`.
– Nov 15 '19 at 04:31