我想\item
将 的尺寸调整为\section
。在此先行致谢。
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\AtBeginSubsection[]{%
\frame<beamer>{
\frametitle{Outline}
\tableofcontents[currentsection,currentsubsection]
}
}
%\beamerdefaultoverlayspecification{<+->}
\begin{frame}{Outline}
\tableofcontents{}
\end{frame}
\section{Chapter 1}
\subsection{\textcolor{black}{General Introduction.}}
%\frame{\tableofcontents[currentsection]}
\begin{frame}{Overview \& Contributions}
\begin{enumerate} %\begin{enumerate}
\item \textcolor{red}{Chapter 2}
\begin{itemize}
\item Chapter 2 contributes
\end{itemize}
\end{enumerate} %\end{enumerate}
\end{frame}
\end{document}
答案1
您可以itemize subitem
像这样重新定义模板(我假设section
您实际上指的是小节,因为您将您的小节称为章节...):
\documentclass{beamer}
\usetheme{Warsaw}
\begin{document}
\AtBeginSubsection[]{%
\frame<beamer>{
\frametitle{Outline}
\tableofcontents[currentsection,currentsubsection]
}
}
\makeatletter
\setbeamertemplate{itemize subitem}{\raise0.2ex\beamer@usesphere{item projected}{bigsphere}}
\makeatother
%\beamerdefaultoverlayspecification{<+->}
\begin{frame}{Outline}
\tableofcontents{}
\end{frame}
\section{Chapter 1}
\subsection{\textcolor{black}{General Introduction.}}
%\frame{\tableofcontents[currentsection]}
\begin{frame}{Overview \& Contributions}
\begin{enumerate} %\begin{enumerate}
\item \textcolor{red}{Chapter 2}
\begin{itemize}
\item Chapter 2 contributes
\end{itemize}
\end{enumerate} %\end{enumerate}
\end{frame}
\end{document}