将脚注插入章节页面

将脚注插入章节页面

我喜欢在\section{}页面中插入脚注。目前,它只在主要内容页面上显示它们。此外,由于我的部分背景较暗,因此脚注应该是白色的。

这怎么可能?

当前 *.sty:

--- Sections ---

\if@doSectionPage\@empty 
\else
\AtBeginSection[]
{
  \begingroup
  \setbeamercolor{background dark}{bg=backgrounddark}
  \begin{frame}[plain]
    \vspace{2em}\usebeamerfont{section title}

\begin{tikzpicture}[tight background]\node[anchor=west, white, inner sep=0pt] at (0,0) {\insertsectionHEAD};
\end{tikzpicture}

  \end{frame}
  \endgroup
}

答案1

方法不同,不是插入脚注,为什么首先要删除它?因此,不要使用框架plain,而是只删除标题。

\documentclass{beamer}

\usetheme{Berlin}

\usepackage{tikz}

\AtBeginSection[]
{
    \begingroup
    \setbeamercolor{background dark}{bg=backgrounddark}
    \setbeamertemplate{headline}{}
    \begin{frame}
        \vspace{2em}\usebeamerfont{section title}
        \vspace*{-\headheight}
        \begin{tikzpicture}
            \node[anchor=west, blue, inner sep=0pt] at (0,0) {\insertsection};
        \end{tikzpicture}
    \end{frame}
    \endgroup
}



\begin{document}
    \section{test}

    \begin{frame}
        bla
    \end{frame}
\end{document}

在此处输入图片描述

相关内容