I am trying to use citation in footnote in Beamer. I have tried quite many examples in answers in tex.stackexchange, but each of them has some problems. There is one great answer by @egreg Undesired Placement of Footnotes in Blocks1 but it has 4th problem. What I want to see is that:
To be in IEEE style;
When citing insiding a block, the reference as a footnote must be outside the block (not inside the block);
Do not repeatedly print the reference in foot note when there are several citation to the same reference;
Does not have conflict with \footnote
Thanks for your help.
MWE:
\documentclass[10pt,xcolor={dvipsnames}]{beamer}
\usefonttheme{professionalfonts}
\usepackage{mathtools}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage[english]{babel}
%add a sample .bib file
\usepackage{filecontents}
\begin{filecontents}{bibexample.bib}
@article{sigfridsson,
title = {Four-dimensional flow {MRI} using spiral acquisition},
volume = {68},
number = {4},
journal = {Magnetic Resonance in Medicine},
author = {Sigfridsson, Andreas and Petersson, Sven and Carlhäll, Carl-Johan
and Ebbers, Tino},
year = {2012},
pages = {1065--1073}
}
\end{filecontents}
% ===================================================================
\usepackage[style=ieee,citetracker=true]{biblatex}
\addbibresource{bibexample.bib}
%=============================================================
\usetheme{Frankfurt}
\begin{document}
\begin{frame}
\frametitle{1}
\begin{block}{definition}
There is a special type of non-stationary stochastic
processes\footfullcite{sigfridsson} when their statistical properties vary
periodically\footnote{element} with time called cyclostationary processes
\footfullcite{sigfridsson}.
\end{block}
\end{frame}
\end{document}


manyfootor the like, but as far as I know none of these solutions is compatible withbeamer. – moewe Aug 18 '18 at 13:02