[Tex/LaTex] \cite and \footnote in together in Beamer

beamerbibtex

generally the references are kept at the last slide and cited using \cite command. I feel that this kind of notation is little difficult to understand from the point of an audience. Mostly, I use \footnote command, because it shows the reference at footer in same slide, which makes easier to understand. But \footnote can't print from bib file and therefore I always ended up putting one complete reference with \footnote. See below an example-

\documentclass{beamer}
\usetheme{Madrid}
\usepackage{bibentry}

\title[Test]{Test} 
\author{Author} 
\institute[]{Institute}
\date{\today} 

\begin{document}
\begin{frame}{Citation}
    This statement requires citation \cite{tobin1964commercial}

    But the way I want is \footnote{Tobin, James. Commercial banks as creators of" money.". Cowles Foundation for Research in Economics at Yale University, 1964.} %\footnote{tobin1964commercial}
\end{frame}

\begin{frame}{References}
    \bibliographystyle{amsalpha}
    \bibliography{bibfile}
\end{frame}
\end{document}

This is how the generated PDF looks-
enter image description here

What I want is a way, so that I can use \footnote together with \cite command, something like \footnote{tobin1964commercial}. And this should show the complete reference in the footer.

Best Answer

\footcite might be a solution for you:

\documentclass{beamer}

\setbeamertemplate{navigation symbols}{}

% only for this example, otherwise in .bib file
\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@TECHREPORT{RePEc:cwl:cwldpp:159,
    title = {Commercial Banks as Creators of 'Money'},
    author = {Tobin, James},
    year = {1963},
    institution = {Cowles Foundation for Research in Economics, Yale University},
    type = {Cowles Foundation Discussion Papers},
    number = {159},
    url = {http://EconPapers.repec.org/RePEc:cwl:cwldpp:159}
}
\end{filecontents}

\usepackage[style=verbose,backend=biber]{biblatex}
\addbibresource{\jobname.bib}

\begin{document}
 \begin{frame}
    Text text \footcite{RePEc:cwl:cwldpp:159}
 \end{frame}

 \begin{frame}
     \printbibliography
 \end{frame} 

\end{document}

enter image description here