我非常喜欢这种演示风格
https://www.archer.ac.uk/training/course-material/2014/04/PMMP_UCL/Slides/castep_1.pdf
我想知道是否有人遇到过这种在每张幻灯片左侧使用的可点击+展开/最小化图例。到目前为止,我还没有在 TeX 交换中找到这种确切的图例类型。
答案1
这可能不是最好的解决方案,但您可以用它\useoutertheme[hideothersubsections,left]{sidebar}
来隐藏未选定子部分的子部分并使用:
\usepackage{hyperref}
\hypersetup{
linktoc=all, %set to all if you want both sections and subsections linked
}
使内容表可点击。
以下是一个例子:
\documentclass[a4paper]{beamer}
\usetheme{Boadilla}
\useoutertheme[hideothersubsections,left]{sidebar} %hides the subsetions of not selected sections
\usepackage{color}
\usepackage{hyperref}
\hypersetup{
linktoc=all, %set to all if you want both sections and subsections linked
}
\title{Amazing Presentation}
\author{By Me}
\date{\today}
\begin{document}
\begin{frame}[plain]{}
\titlepage
\end{frame}
\begin{frame}[plain, allowframebreaks]
\tableofcontents
\end{frame}
\section{Section 1}
\subsection{A subsection}\begin{frame}{}\end{frame}
\subsection{Another subsection}\begin{frame}{}\end{frame}
\subsection{So many subsections}\begin{frame}{}\end{frame}
\section{Section 2}
\subsection{Even more subsections!}\begin{frame}{}\end{frame}
\subsubsection{Subsubsections are possible as well}\begin{frame}{}\end{frame}
\subsubsection{Amazing!}\begin{frame}{}\end{frame}
\subsection{The subsections are even clickable}\begin{frame}{}\end{frame}
\subsection{I think you get the point}\begin{frame}{}\end{frame}
\end{document}
如果你愿意,你可以自定义侧边栏
我以这种方式使用框架的想法来自这里。