I want to produce the following format when citing on my slides using Beamer.
Right now I am producing this manually, but I want latex+bibtex to do this automatically. How can I achieve this?
My file looks like:
\documentclass[aspectratio=169]{beamer}
\usetheme[hideothersubsections]{Hannover}
\setbeamertemplate{bibliography item}{[\theenumiv]}
\defbeamertemplate{footline}{center page number}
{
\vspace{-12pt}
\hspace*{6.4cm}%
\usebeamercolor[fg]{page number in foot}%
\usebeamerfont{page number in foot}%
{\insertpagenumber\,/\,\insertpresentationendpage}
\hspace*{6cm}\vskip2pt
}
\begin{document}
\frame{
In addition, we provide guidance in the application of the method for experimental groups\cite{HarrisSongKiang2007,YuGuptaLiuEtAl2012,WedekindReguera2008}.
\footnotetext{\tiny\hspace{-16.5pt}\cite{HarrisSongKiang2007} N. C. Harries et al., Phys Rev Lett., 99,2007\\ \cite{YuGuptaLiuEtAl2012} H. Yu et al., Proc. Natl. Acad. Sci.,109, 2012.\\ \cite{WedekindReguera2008} J. Wedekind and D. Reguera. J. Phys. Chem. B, 112, 2008.\\ }
}
\section*{References}
\begin{multicols}{2}[
\frametitle{\insertsection}
\usebeamertemplate{frametitle}]
\tiny{\bibliographystyle{unsrt}}
\bibliography{BibliographyDataBase}
\end{multicols}
\end{document}
I've tried Natbib and BibLatex with no success.


biblatexstandard approaches for such an issue. Maybe it can help you already (not sure if and wherebeamercould interfere). Specifically forbeamerwe have https://tex.stackexchange.com/q/45406/35864. Also related: https://tex.stackexchange.com/q/386707/35864 – moewe Apr 16 '19 at 15:11