如何在每个投影仪幻灯片的标题中添加可视计数器?

如何在每个投影仪幻灯片的标题中添加可视计数器?

我想使用 beamer 在每张幻灯片的标题中添加一个可视计数器,我附上了一张照片来表明我想要发生的事情。另外,我想在圆圈内添加一个数字,表示部分编号。不幸的是,我不知道怎么做。有人能帮我吗?

在此处输入图片描述

请忽略视觉计数器中的白色背景,我只是使用 Microsoft PowerPoint 粘贴它。我在下面附加了我的代码:

\documentclass{beamer}

\mode<presentation> {
\usetheme{Madrid}
}

\usepackage{graphicx} 
\usepackage{booktabs} 
\usepackage{ragged2e}
\usepackage{braket}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{array}
\usepackage{graphicx}
\setbeamertemplate{caption}[numbered]
\usepackage[caption=false]{subfig}
\usepackage{amssymb}
\usepackage{tikz}
\usetikzlibrary{calc,shapes}
\newcommand{\tikzmark}[1]{\tikz[overlay,remember picture] \node (#1) {};}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}

% Footnote Font
\setbeamertemplate{footnote}{%
  \tiny%
  \parindent 1em\noindent%
  \raggedright
  \hbox to 1.8em{\hfil\insertfootnotemark}\insertfootnotetext\par%
}%
\setlength\footnotesep{0pt}
\usefonttheme[onlymath]{serif}


\begin{document}
%------------------------------------------------
\section{Objectives} 
%------------------------------------------------

\begin{frame}
\frametitle{\textbf{Objectives}}
\justifying 
\begin{itemize}
\item{We study nonequilibrium physics using the simplest way of taking an 
isolated quantum system out of equilibrium: a \textit{quantum quench}.}
\end{itemize}
\end{frame}
\end{document}

答案1

免责声明:我不是投影仪专家,我能找到的所有添加标题左侧数字的解决方案都非常复杂,本质上是重写主题的某些部分。但将数字放在不会干扰框架标题默认位置的地方很简单,正如所解释的那样在这个答案中

\documentclass{beamer}

\mode<presentation> {
\usetheme{Madrid}
}

\usepackage{booktabs} 
\usepackage{ragged2e}
\usepackage{braket}
\usepackage{amsmath}
\usepackage{mathtools}
\usepackage{array}
\setbeamertemplate{caption}[numbered]
\setbeamertemplate{section}[numbered]
\usepackage[caption=false]{subfig}
\usepackage{amssymb}
\usepackage{tikz} % loads graphicx
\usetikzlibrary{calc,shapes}
\newcommand{\tikzmark}[1]{\tikz[overlay,remember picture] \node (#1) {};}
\usepackage[utf8]{inputenc}
\usepackage{lmodern}

% Footnote Font
\setbeamertemplate{footnote}{%
  \tiny%
  \parindent 1em\noindent%
  \raggedright
  \hbox to 1.8em{\hfil\insertfootnotemark}\insertfootnotetext\par%
}%

\setbeamerfont{frametitle}{series=\bfseries}
\addtobeamertemplate{frametitle}{}{\begin{tikzpicture}[remember picture,overlay]
\node[circle,ultra thick,draw,anchor=north east] at ([xshift=-4pt,yshift=-4pt]current page.north east)
{\thesection};
\end{tikzpicture}}

\setlength\footnotesep{0pt}
\usefonttheme[onlymath]{serif}


\begin{document}
%------------------------------------------------
\section{Objectives} 
%------------------------------------------------

\begin{frame}
\frametitle{Objectives}
\justifying 
\begin{itemize}
\item{We study nonequilibrium physics using the simplest way of taking an 
isolated quantum system out of equilibrium: a \textit{quantum quench}.}
\end{itemize}
\end{frame}
\end{document}

在此处输入图片描述

如果您使用不同的主题,这当然会改变。顺便说一句,您正在加载许多与问题不直接相关的包。

相关内容