matze / mtheme

A modern LaTeX Beamer theme
6.36k stars 841 forks source link

Footnotes in combination with `\fullcite` are very large and their font size cannot be adjusted #401

Open moritzmathes opened 3 months ago

moritzmathes commented 3 months ago

Hello,

In the example below the second and third footnote should have the same font size. This is only the case when the standard Latex theme is used, but it does not work with the metropolis theme. I've tested this with both TeX Live + TeXstudio and Overleaf and the behaviour is identical. Some time back (a year?) this issue was not there. Please let me know if you know how to fix this.

Best regards, Moritz

Steps to reproduce

\documentclass{beamer}
\usetheme{metropolis}
\usepackage[backend=biber,style=chem-angew]{biblatex}
\bibliography{references.bib}

\begin{document}    
\begin{frame}   
    Text\footfullcite{random_article}
    Text\footnote{\tiny \fullcite{random_article}.}
    Text\footnote{\tiny Author, Journal 2024.}
\end{frame}
\end{document}
@article{random_article,
  author = {Author},
  date = {2024},
  journaltitle = {Journal},
}

Result

demo

Expected result

demo_vanilla

tunakasif commented 1 month ago

Same problem here

moritzmathes commented 1 month ago

By now I have switched to a maintained fork of metropolis, which is called moloch. There the issue doesn't exist. I hope this is helpful.