2

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:

  1. To be in IEEE style;

  2. When citing insiding a block, the reference as a footnote must be outside the block (not inside the block);

  3. Do not repeatedly print the reference in foot note when there are several citation to the same reference;

  4. 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} 

enter image description here

Amin
  • 946

1 Answers1

3

With a bit of manual intervention, you could do something like this:

\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\footnotemark{} when their statistical properties vary 
periodically\footnotemark{} with time called cyclostationary processes\footnotemark[1].
  \end{block}
  \setcounter{footnote}{1}
  \footnotetext{element}
  \addtocounter{footnote}{1}
  \footnotetext{\fullcite{sigfridsson}}
\end{frame}

\end{document} 

enter image description here