I get LaTeX Font Warning with beamer (2019/09/29 v3.57), biblatex, and a reference with ISBN. How can I remove it?
The full error text is:
[filename].tex || LaTeX Font Warning: Font shape `OT1/lmss/m/sc' in size <10.95> not available Font shape `OT1/lmr/m/sc' tried instead on input line 12.
I have tried everything in How to remove the warnings "Font shape `OT1/cmss/m/n' in size <4> not available" and "Size substitutions with differences" in beamer? to no avail:
- added
\usepackage{lmodern} - added
\usepackage{anyfontsize} - added
\let\Tiny=\tiny - my beamer version is already
>= 3.44 - I have the
\end{document}
I have isolated the problem down to the isbn field of the .bib file entry. The error disappears when that field is removed.
Here's the truly-minimal working example:
% filename.tex
\documentclass{beamer}
\let\Tiny=\tiny
\usepackage{lmodern}
\usepackage{anyfontsize}
\usepackage{biblatex}
\addbibresource{ref.bib}
\begin{document}
\cite{freivalds}
\printbibliography
\end{document}
% ref.bib
@InProceedings{freivalds,
author="Freivalds",
isbn="978-3-540-38769-5"
}
Here's how the output looks like. Note how the text ISBN uses a different font in the bibliography.

OT1/lmss/m/sc in size <10.95>as the standard. – Utkan Gezer Jul 08 '20 at 11:10