latex beamer 页脚中的脚注

latex beamer 页脚中的脚注

我正在准备一个演示文稿。我的演示文稿是这样的:

\documentclass[hyperref={
linkcolor=black,
urlcolor=black,
citecolor=black,
colorlinks=true 
}]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{tcolorbox}%installiert pgf, verbatim
\setbeamertemplate{headline}{
\begin{tcolorbox}[width=\linewidth*4/5]
\hspace{2em}
{\large\thesection.\thesubsection.~\insertsubsection}
\hspace{2em}
\end{tcolorbox}
}

\setbeamertemplate{footline}{
\begin{flushright}
\hfill\textcolor{red}{\rule{10cm}{.4pt}}\vspace{5pt}\\
\textcolor{gray}{{\tiny{~Name~\vline~\inserttitle~\vline~Folie~insertframenumber~\text{ }}}}
\end{flushright}
}

\setbeamerfont{footnote}{size=\tiny}
\begin{document}
bla
\end{document}

现在我想将脚注放在页脚中。例如:“我的车是红色的”^2。在左侧的页脚中,我发现:^2 关于汽车的书,John 等人,2005 年。右侧是序言中定义的文本

答案1

快速破解:

\documentclass{beamer}

\title{title}

\setbeamertemplate{navigation symbols}{
\parbox{10cm}{
    \textcolor{red}{\rule{10cm}{.4pt}}\newline
    \vskip1pt
    \textcolor{gray}{%
        \tiny
        \hfill Name~\vline~\inserttitle~\vline~Folie~insertframenumber\quad
    }
    \vskip3pt
}
}

\setbeamerfont{footnote}{size=\tiny}
\renewcommand{\footnoterule}{}
\begin{document}

\begin{frame}
bla \footnote{Test}
\end{frame}

\end{document}

在此处输入图片描述

相关内容