我正在与 合作beamer
创建一些幻灯片。如何删除目录中子部分的项目符号?
答案1
您可以重新定义subsection in toc
模板;在评论中提出新请求后,可以使用
\tableofcontents[sectionstyle=show/shaded,subsectionstyle=show/show/shaded]
对于内部目录:
\documentclass{beamer}
\usetheme{Warsaw}
\setbeamertemplate{subsection in toc}{\leavevmode\leftskip=2em\inserttocsubsection\par}
\AtBeginSection[]{%
\begin{frame}
\frametitle{Contents}
\tiny\tableofcontents[sectionstyle=show/shaded,subsectionstyle=show/show/shaded]
\end{frame}}
\begin{document}
\begin{frame}
\frametitle{General Outline}
\tableofcontents
\end{frame}
\section{Test Section A}
\subsection{Test Subsection One}
\begin{frame}test\end{frame}
\subsection{Test Subsection Two}
\begin{frame}test\end{frame}
\section{Test Section B}
\subsection{Test Subsection One}
\begin{frame}test\end{frame}
\subsection{Test Subsection Two}
\begin{frame}test\end{frame}
\end{document}
一般目录:
第一部分的内部目录:
第二部分的内部目录:
顺便说一句,\tiny
不接受争论。