How would I go about getting footcite citations to be displayed on the same line, for instance separated by a semicolon? I would like the footnotes to display something like:
$^{1}$Smith, The Title; $^{2}$Smith2, The Title2
Here is a minimal example:
\RequirePackage{filecontents}
\begin{filecontents*}{\jobname.bib}
@book{test,
author="John Smith",
title="The title",
year=1099,
publisher="nobody",
}
@book{test2,
author="John Smith2",
title="The title2",
year=10992,
publisher="nobody",
}
\end{filecontents*}
\documentclass[12pt]{beamer}
\usepackage[backend=biber,style=authortitle]{biblatex}
\bibliography{\jobname}
\begin{document}
\begin{frame}
\begin{itemize}
\item Text \footcite{test}
\item Text2 \footcite{test2}
\end{itemize}
\end{frame}
\end{document}
Which gives me:


\usepackage[para]{footmisc}, but according to https://tex.stackexchange.com/q/69292/35864 that doesn't work... – moewe Aug 03 '18 at 08:23