有没有办法生成仅列出 Beamer 中附录部分的目录?
本质上我想做的正是这,但对于 Beamer 演示文稿来说。出于某种原因,建议的解决方案对我来说不起作用。即使只是包含etoc
在我的 Beamer 文档中也会出现大量错误消息(而上述问题的答案中提供的示例代码可以正常工作)。
代码示例:
\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}
我希望第二个目录列出附录 A 和附录 B。
答案1
beamer
自动完成。您只需要\section
在附录中的命令后添加一些(框架)内容。
\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}
\begin{frame}[t]
\frametitle{Some appendix slide}
\end{frame}
\end{document}