[Tex/LaTex] font size of \footcite of biblatex in beamer

beamerbiblatexcitingfontsizefootnotes

I have unsuccessfully tried to control the font size of \footcite with \renewcommand{\bibfont}{\tiny}? Is there any other way?

Best Answer

Changing the fontsize with \citesetup will affect all citations, not only those in footnotes. Simply redefining \footnotesize to \scriptsize wouldn't be advisable for article or book documents because the standard \footnotesize command includes settings for the vertical spacing of lists and displayed equations, while \scriptsize doesn't. This, on the other hand, shouldn't be of concern in a beamer document. So I'd say that

\renewcommand{\footnotesize}{\scriptsize}

is the way to go.

EDIT: I had forgotten about the biblatex conditional \iffootnote. I still think that redefining \footnotesize is preferable because it will also affect non-citation footnotes.

Related Question