修复部分和项目项目符号大小

修复部分和项目项目符号大小

我想\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}

在此处输入图片描述

相关内容