I would like to have a bibliography entry which has rounds brackets around multiple items. I somewhat succeeded, but need to fine-tune the format.
First of all, here is the MWE:
% xelatex - biber - xelatex - xelatex
\documentclass{article}
\usepackage[style=nature,maxbibnames=99]{biblatex}
\usepackage{hyperref}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% to create a file when first processed
% \begin{filecontents}[<options>]{<filename>}
% possible options: overwrite, nosearch, noheader
\begin{filecontents}{bib_2ndtry.bib}
@misc{A2020,
author = {Author, A. and Author, B. and Author C.},
title = {Title of some conference talk},
eventtitle = {Conference title},
date = {2011},
venue = {Conference location},
}
@misc{B2021,
author = {Buthor, A.},
year = {2021},
title = {Bravo},
}
\end{filecontents}
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
\addbibresource{bib_2ndtry.bib}
\DeclareBibliographyDriver{misc}{%
\usebibmacro{title}%
\newunit
\printfield{eventtitle}%
\newunit
\mkbibparens{%
\printfield{venue}%
\newunit
\usebibmacro{date}%
}%
\usebibmacro{finentry}%
}
\begin{document}
\nocite{*}
\printbibliography
\end{document}
This results in the following document:
I need to
- add an additional space in-front of the opening bracket
- remove the dot after the opening bracket
- remove the space after the opening bracket
- replace the dot after the Conference location by a comma
I am somewhat lost how to achieve that and would greatly appreciate any hint.


