将参考文献放在 Beamer 的脚注中(不是脚注)

将参考文献放在 Beamer 的脚注中(不是脚注)

我对主题做了一些更改Warsaw。请查看我的 MWE:

%%%%%Packages%%%%%%%


\documentclass[compress]{beamer}
\usepackage[export]{adjustbox}
\usepackage[version=4]{mhchem}
\usepackage{graphicx}

%%%%%Theme&Colors%%%%%%%


\usetheme{Warsaw}
%\usetheme{Madrid}
\definecolor{Navyblue}{rgb}{0.04706, 0.13725, 0.26667} 

\definecolor{crimson}{rgb}{0.86, 0.08, 0.24}
\usecolortheme[named=Navyblue]{structure}


%%%%%Colors of Parts%%%%%%%



\setbeamercolor{title}{bg=Navyblue,fg=white}

\setbeamercolor{section in head/foot}{bg=black,fg=white}

\setbeamercolor{frametitle}{bg=Navyblue,fg=white}
\setbeamercolor{frametitle right}{bg=Navyblue,fg=white}

\setbeamercolor{palette primary}{bg=white,fg=black}



%%%%%Footline%%%%%%%



\setbeamertemplate{navigation symbols}{}

\setbeamercolor{footlinecolor}{fg=white,bg=Navyblue}

\setbeamertemplate{footline}{%
  \begin{beamercolorbox}[wd=1\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fil,rightskip=.3cm]{footlinecolor}
{}
    \hspace{0.3cm}%
    \scriptsize{\hfill {\tiny \insertframenumber\,\textbf{/}\,\inserttotalframenumber}}
    \hfill

  \end{beamercolorbox}
}
%%%%%%%%%%%%%%%%%%%


\title{Synthesis of the Elusive Branched Fluoro-Oligogermane \ce{(Ph3Ge)3GeF}}
\author{Ardalan}
\institute{}
\date{\begin{scriptsize}
November 8, 2019
\end{scriptsize}}

\begin{document}


\begin{frame} [plain]
\titlepage

\end{frame}



\section{Introduction}
\subsection{Germanium Catenates}
\begin{frame}[t]{\ce{Ge-F} Containing Compounds} \vspace{20pt}

\begin{itemize}

\item There are 134 compounds in total that contain \ce{Ge-F} bond.

\begin{itemize}
\item Only one crystallographically characterized germanium-fluorine compound having unsupported \ce{Ge-Ge} bonds.
\end{itemize}

\end{itemize}
\vspace{30pt}








\end{frame}



\end{document}

我习惯在每张幻灯片中放置参考资料:

%\blfootnote{{\tiny{\textit{\textbf{J. Am. Chem. Soc.}} 2010,  132, 38}}}
    %for footnote solution #1

    %\footnotetext{\textit{\textbf{J. Am. Chem. Soc.}} 2010,  132, 38}

但现在我想把它们放在每张幻灯片的实际页脚中,如下所示:

在此处输入图片描述

是否可以?

提前致谢。

答案1

当然,你可以自然地添加它们,但这是一个相当不寻常的地方——那里没有太多空间。我不确定是否值得开发一个界面。

\documentclass[compress]{beamer}
\usepackage[export]{adjustbox}
\usepackage[version=4]{mhchem}
\usepackage{graphicx}

%%%%%Theme&Colors%%%%%%%


\usetheme{Warsaw}
%\usetheme{Madrid}
\definecolor{Navyblue}{rgb}{0.04706, 0.13725, 0.26667}

\definecolor{crimson}{rgb}{0.86, 0.08, 0.24}
\usecolortheme[named=Navyblue]{structure}


%%%%%Colors of Parts%%%%%%%



\setbeamercolor{title}{bg=Navyblue,fg=white}

\setbeamercolor{section in head/foot}{bg=black,fg=white}

\setbeamercolor{frametitle}{bg=Navyblue,fg=white}
\setbeamercolor{frametitle right}{bg=Navyblue,fg=white}

\setbeamercolor{palette primary}{bg=white,fg=black}



%%%%%Footline%%%%%%%



\setbeamertemplate{navigation symbols}{}

\setbeamercolor{footlinecolor}{fg=white,bg=Navyblue}
\newcommand\insertreferences{}
\setbeamertemplate{footline}{%
  \begin{beamercolorbox}[wd=1\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm plus1fil,rightskip=.3cm]{footlinecolor}
{}
    \hspace{0.3cm}%
    \scriptsize{\insertreferences\hfill {\tiny \insertframenumber\,\textbf{/}\,\inserttotalframenumber}}
    \hfill

  \end{beamercolorbox}
}
%%%%%%%%%%%%%%%%%%%


\title{Synthesis of the Elusive Branched Fluoro-Oligogermane \ce{(Ph3Ge)3GeF}}
\author{Ardalan}
\institute{}
\date{\begin{scriptsize}
November 8, 2019
\end{scriptsize}}

\begin{document}


\begin{frame} [plain]
\titlepage

\end{frame}



\section{Introduction}
\subsection{Germanium Catenates}

\renewcommand\insertreferences{{\tiny\color{red}References: blblblb}}

\begin{frame}[t]{\ce{Ge-F} Containing Compounds} \vspace{20pt}

\begin{itemize}

\item There are 134 compounds in total that contain \ce{Ge-F} bond.

\begin{itemize}
\item Only one crystallographically characterized germanium-fluorine compound having unsupported \ce{Ge-Ge} bonds.
\end{itemize}

\end{itemize}
\vspace{30pt}


\end{frame}

\renewcommand\insertreferences{}

\begin{frame}{Another Frame}
blblbl
\end{frame}


\end{document}

相关内容