如何删除投影仪演示文稿页面计数的注释框架?

如何删除投影仪演示文稿页面计数的注释框架?

我正在使用\note命令在演示文稿中插入注释框Beamer。我想从页数计数中删除这些注释框,即使在启用注释的情况下编译演示文稿时也是如此。我该怎么做?

答案1

平均能量损失

对于注释或覆盖,页数不是框架数,因此\thepage 您必须使用\insertframenumber。框架数显示在外部主题infolinesMadrid主题(内部加载信息行)中,但您可以将其放置在任何位置:示例:

\documentclass{beamer}
\setbeameroption{show  notes}
\newcommand\testpage{
\Huge This is the page \thepage{} and   
the frame \insertframenumber{} of 
a total of \inserttotalframenumber{} frames.
} 
% some themes showing the frame number
% \useoutertheme{infolines}
% \usetheme{Madrid} %use infolines
\begin{document}
\begin{frame}{One}
\testpage
\note{\testpage}
\end{frame}
\note{\testpage}
\begin{frame}{Two}
\testpage
\end{frame}
\begin{frame}{Three}
\only<1>{\testpage}
\only<2>{\testpage}
\end{frame}
\end{document}   

相关内容