[Tex/LaTex] Footnote Citation in Beamer

beamerbiblatex

I'm putting a science related presentation together with the beamer class and I'd like to add citations as footnotes on the relevant slides. I've got the biblatex package running and am using the \footcite command which does a nice job. Unfortunately, it doesn't appear biblatex will put the journal, volume number, page number information in the foot note citation. Does anyone know how to get this stuff to show up in the footnote?

With the style=authortitle option selected I get footnote citations like:

Magde, Elson, and Webb, Thermodynamic Fluctuations in a Reacting System – Measurement by Fluorescence Correlation Spectroscopy".

But I'd really like something like this in the footnote

Magde, Elson, and Webb, Phys. Rev. Lett. 29, 705 (1972)

Best Answer

you may want to to try \footfullcite instead of \footcite.

[From Audrey] Adding the line:

\newrobustcmd*{\footlessfullcite}{\AtNextCite{\renewbibmacro{title}{}\renewbibmacro{in:}{}}\footfullcite}

in the preamble and the using \footlessfullcite{<entry key>} results in a nice footnote citation.