Beamer 中的分页和列表

Beamer 中的分页和列表

在此处输入图片描述

第一个问题:

我想知道如何在幻灯片顶部添加圆圈组,这样我可以通过单击圆圈转到特定主题的幻灯片。圆圈显示在上面的幻灯片中。因此,如果我单击“估算”下的圆圈,我将转到有关估算的幻灯片。

第二个问题:

我想知道如何创建一个带有编号 1、2、3 等的列表,如幻灯片底部所示。在 LaTeX 中,列表中的数字始终位于蓝色圆圈内。如何创建与上面幻灯片中的编号完全相同的编号?

答案1

这些圆圈由主题提供Singapore。为了只获取枚举中的数字,您必须提供一个迷你模板,例如

\begin{enumerate}[1.]

为了使此功能适用于所有enumerate环境,请将其放入\setbeamertemplate{enumerate items}[default]序言中,正如 Gonzalo 所评论的那样。

完整代码

\documentclass{beamer}

\usetheme{Singapore}
\useinnertheme{rounded}
%\setbeamercolor*{normal text}{fg=black,bg=violet!15}
\usecolortheme{rose}
\begin{document}
  \section{Some}
  \begin{frame}
    Some text
    \begin{enumerate}[1.]
      \item one
      \item two
    \end{enumerate}
  \end{frame}
  \subsection{Subsection}
  \begin{frame}
    Some text
  \end{frame}
\end{document}

在此处输入图片描述

如果您还想要页脚,您必须做额外的工作。

\documentclass{beamer}

\usetheme{Singapore}
\useinnertheme{rounded}
\setbeamercolor*{normal text}{fg=black,bg=violet!15}
\makeatletter
\defbeamertemplate*{footline}{mytheme}
{%
  \leavevmode%
  \hbox{\begin{beamercolorbox}[wd=0.35\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fill,rightskip=.3cm,center]{author in head/foot}%
    \usebeamerfont{author in head/foot}\insertshortauthor
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=0.35\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil,center]{title in head/foot}%
    \usebeamerfont{title in head/foot}\insertshorttitle
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=0.3\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{author in head/foot}%
    \usebeamerfont{title in head/foot}\insertshortdate\hfill
    \insertframenumber/\inserttotalframenumber
  \end{beamercolorbox}}%
  \vskip0pt%
}
\makeatother
\setbeamercolor*{structure}{bg=red!50,fg=olive}

\setbeamercolor*{palette primary}{use=structure,fg=white,bg=structure.fg!90}
% \setbeamercolor*{palette secondary}{use=structure,fg=white,bg=structure.fg!75}
%\setbeamercolor*{palette tertiary}{use=structure,fg=white,bg=structure.fg!50!black}
%\setbeamercolor*{palette quaternary}{fg=white,bg=structure}

\author{Ghost}
\title[my title]{This is some presentation}
\institute{Some institute}

\begin{document}
  \begin{frame}
    \titlepage
  \end{frame}
  \section{Some}
  \begin{frame}
    Some text
    \begin{enumerate}[1.]
      \item one
      \item two
    \end{enumerate}
  \end{frame}
  \subsection{Subsection}
  \begin{frame}
    Some text
  \end{frame}
  \subsection{Subsection}
  \begin{frame}
    test text
  \end{frame}

  \section{Test Section One One}
  \begin{frame}
    test text
  \end{frame}

  \subsection{Subsection}
  \begin{frame}
    test text
  \end{frame}

  \subsection{Subsection}
  \begin{frame}
    test text
  \end{frame}

  \section{Test Section One One}
  \begin{frame}
    test text
  \end{frame}

  \subsection{Subsection}
  \begin{frame}
    test text
  \end{frame}

\end{document}

在此处输入图片描述

相关内容