Bibliographies can be typeset in a smaller font size by redefining the \bibfont macro (if one uses natbib or biblatex) or by simply appending the definition of \thebibliography. This also works with the beamer class; however, switching to a smaller font size leaves beamer's document icons at the start of each bibitem unchanged. How can I scale those icons down to, say, 75% of their original size?
(From Removing document icons from a Bibtex bibliography in Beamer, I gather that an answer is likely to involve some clever use of \setbeamertemplate{bibliography item}.)
\documentclass{beamer}
\usepackage{etoolbox}
\apptocmd{\thebibliography}{\scriptsize}{}{}
\usepackage{filecontents}
\begin{filecontents}{\jobname.bib}
@article{Bli74,
author = {Blinder, Alan S.},
year = {1974},
title = {The economics of brushing teeth},
journal = {Journal of Political Economy},
volume = {82},
number = {4},
pages = {887--891},
}
\end{filecontents}
\begin{document}
\nocite{*}
\bibliographystyle{plain}
\begin{frame}
\bibliography{\jobname}
\end{frame}
\end{document}


\lower3.5pt\hbox{\hskip2pt\scalebox{2}{...}\hskip1pt}; by this it ispossible to move the image up and (with negative values e.g.:\hskip15pt ... \hskip-10) also closer to the text. However, this does not change the lineskip for the first line in an entry, which differs from others in elongated items. I tried[b]onscalebox,parboxbut it horribly failed (crashing not only TeXstudio). Hints? – BadAtLaTeX Jan 04 '18 at 22:56\renewcommand{\pgfuseimage}[1]{\scalebox[b]{.75}{\includegraphics{#1}}}(as my naive attempt at reducing the lineskip). This led to a crash of not only the editor, but moreover I was logged out of the session and -as crazy as it sounds- it changed some JS Blocker setting in Safari. Where do I report this? – BadAtLaTeX Jan 04 '18 at 23:24beamer, you can report it on Github. – Werner Jan 04 '18 at 23:35\pgfuseimagethat I have to replace for that? – BadAtLaTeX Jan 10 '18 at 18:35bookandonline(globe) elements use\pgfuseimage. – Werner Jan 17 '18 at 05:58\let\oldpgfuseimage\pgfuseimageand use that one{\scalebox{.5}{\oldpgfuseimage{#1}}}instead of\includegraphics{}. – BadAtLaTeX Jan 17 '18 at 09:03