Beamer 第二次 footcite 改变风格

Beamer 第二次 footcite 改变风格

我的问题是,当第二项变得可见时,引用样式会略有变化(消失日志,彩色字体),因此第一项的位置会发生变化:

\documentclass[mathserif]{beamer}
\usepackage[style=verbose,backend=biber]{biblatex}

\renewcommand{\footnotesize}{\tiny}

\begin{filecontents}{\jobname.bib}
@Book{article1,
   Day = {30},
   Edition = {2},
   Month = {jun},
   Publisher = {Artech House Publishers},
   author = {Taflove, Allen and Hagness, Susan C.},
   title = {Computational Electrodynamics: The Finite-Difference Time-Domain Method},
   year = {2000},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\begin{document}
\frame{\frametitle{Title~\footfullcite{article1}}
   \begin{itemize}[<+->]
       \item a
       \item b
       \item c
       \end{itemize}
}
\end{document}              

有什么方法可以保持引用样式不变(包括期刊名称)?

相关内容