我有一些beamer
幻灯片,右侧有注释,我想将文本在注释页上水平和垂直居中。
我试过了:
\documentclass[11pt]{beamer}
\usepackage[gen]{eurosym}
\setbeamerfont{caption}{size=\scriptsize}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\renewcommand*\footnoterule{}
\setbeamerfont{footnote}{size=\tiny}
\setbeamersize{text margin left=7mm,text margin right=7mm}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}
\begin{document}
\begin{frame}{Slide Title}
Some text in the main slides
\end{frame}
\note{
\begin{center}
Center this horizontally and vertically
\end{center}
}
%------------------------------------------------
\end{document}
其结果是:
我知道我们可以使用\begin{frame}[c]
,但此选项不适用于注释页。此外这个答案,有没有简单/直接的方法?
答案1
只需添加\vfill
s。
\documentclass[11pt]{beamer}
\usepackage[gen]{eurosym}
\setbeamerfont{caption}{size=\scriptsize}
\renewcommand*{\thefootnote}{\fnsymbol{footnote}}
\renewcommand*\footnoterule{}
\setbeamerfont{footnote}{size=\tiny}
\setbeamersize{text margin left=7mm,text margin right=7mm}
\usepackage{pgfpages}
\setbeameroption{show notes on second screen=right}
\begin{document}
\begin{frame}{Slide Title}
Some text in the main slides
\end{frame}
\note{\vfill
\begin{center}
Center this horizontally and vertically
\end{center}
\vfill
}
%------------------------------------------------
\end{document}