When using Biblatex's autocite command, I sometimes come across instances when I need to format the citations as a reference set. There is the option of using mcite, but then I lose the high level markup that autocite offers, .e.g. switching between plain, inline and superscript. If I use autocite or autocites, each reference would get it's own citation in the bibliography. Is there a solution that offers something like what I call \mautocite in this example?
\usepackage[backend=biber,mcite,subentry,autocite=plain]{biblatex}
...
\begin{document}
Some text here\autocite{key1}. More text here\mautocite{set1,*key2,*key3,*key4}.
Cite a subentry\autocite{key3}.
\end{document
In the text, it would appear as
Some text here [1]. More text here [2].
Cite a subentry [2b].
And this would give two entries in the bibliography, where the second reference, [2], would be a set. Is there a way to get biblatex to do this?
