I'd like to cite two sources on the same line. They're supposed to appear in superscript. There is no separator between them, just a whitespace, which makes it look like '12' instead of the desired '1, 2'. Here's an MWE:
\documentclass{beamer}
\usepackage[style=verbose-ibid,backend=bibtex]{biblatex}
\usepackage{filecontents}
\begin{filecontents}{refs.bib}
@article{ref_a,
author = {A},
title = {a},
year = {1970},
}
@book{ref_b,
author = {B},
title = {b},
year = {1970},
}
\end{filecontents}
\bibliography{refs}
\begin{document}
\begin{frame}\frametitle{frametitle}
text.
\begin{itemize}
\item item \autocite{ref_a} \autocite{ref_b}
\end{itemize}
\end{frame}
\end{document}
So if I'm using \autocite{ref_a} \autocite{ref_b}, I get '12' instead of '1, 2'. And if I'm using \autocite{ref_a, ref_b}, I get '1' and the footnote lists the two references in the same entry, separated by a semicolon. And if I'm using \autocite{ref_a}, \autocite{ref_b}, then this doesn't work either, of course. What I'd like is two separate entries and '1, 2'. Is there a way to set the separator for such references in Beamer with BibTeX?

\autocites{ref_a}{ref_b}... – BambOo Jun 08 '20 at 17:38