[Tex/LaTex] Beamer bibliography in two columns on multiple frames

beamerbibliographiescolumns

Is it possible to put a bibliography in beamer presentation, in two columns spanning via several frames?

I have

\begin{frame}[allowframebreaks]{Reference}
    \bibliographystyle{alpha}
    \bibliography{mybib}
\end{frame}

And that will split the references on multiple slides, which is nice, but still there are too many slides created just for references. So I tried with multicol package, but I only get some of the references, and only on one slide (I kept the allowframebreaks on the frame). So that's kinda a bust :\

I've searched all over but no luck.

I'd give a mwe, but I'd need to give a .bib file, dunno how that can help…

Best Answer

I found this:

\section*{Références}

\begin{multicols}{2}[\frametitle{\insertsection} \usebeamertemplate{frametitle}]
\bibliography{Biblio.bib}
\bibliographystyle{auteurfr}
\end{multicols}

By this way you can have bibliography in two columns on multiple frames. In the first frame, the frametitle beamer template appear with the name of the section.

Related Question