当我写下标题时,我想删除第一页和第三页之间不需要的空白页。
\documentclass[a4paper]{beamer}
\setbeamertemplate{footline}{}
\begin{document}
\begin{frame}
Some text which I would like to write down.
\end{frame}
\begin{frame}
Let us write this in terms of creation and annihilation operators, using \footnote{$\phi(\vec{x}) = \int d\tilde{p}\left( e^{i\vec{p}\cdot\vec{x}}a_{\vec{p}} + e^{- i\vec{p}\cdot\vec{x}}a_{\vec{p}}^{\dagger} \right)$}{eq.}
\end{frame}
\end{document}
我想为某个公式写脚注,但脚注空间有时太长,写不完。到目前为止,我搜索了类似的问题,但找不到合适的答案来解决这个问题。
我想知道的是,如何删除不需要的空白页或如何增加脚注空间。我该怎么做?
答案1
使用\left(
和\right)
似乎是问题所在。尝试使用\big(
和\big)
。它不会创建空白页。或者您可能希望 在序言中添加\addtobeamertemplate{footnote}{}{\vspace{24pt}}
%%change pt 数量(根据需要) ,然后使用和\left(
\right)
\documentclass[a4paper]{beamer}
\setbeamertemplate{footline}{}
\addtobeamertemplate{footnote}{}{\vspace{24pt}}
\begin{document}
\begin{frame}
Some text which I would like to write down.
\end{frame}
\begin{frame}
Let us write this in terms of creation and annihilation operators, using \footnote{$\phi(\vec{x}) = \int d\tilde{p}\left( e^{i\vec{p}\cdot\vec{x}}a_{\vec{p}} + e^{- i\vec{p}\cdot\vec{x}}a_{\vec{p}}^{\dagger} \right)$}{eq.}
\end{frame}
\end{document}