I am making a document in overleaf, latex, but I am running in some problems with the reference list. I have a reference bib package called references.bib with the following input:
@article{Laplaud,
author = "{Laplaud, V. and Levernier, N., Pineau, J. and San Roman, M. and Barbier, L. and Saez, P.J. and ... Heyvingh, J.}",
year = {2020},
title = {Pinching the cortex of live cells reveals thickness instabilities caused by Myosin II motors.},
journal = {bioRxiv},
DOI = {10.1101/2020.09.28.316729}
}
The other articles that I want to cite are in the same format.
Then I added in the code:
\usepackage{biblatex}
\addbibresource{references.bib}
\begin{document}
\addcontentsline{toc}{section}{References}
\printbibliography
\end{document}
To print the reference list.
But the problem is that the list is printed with the initials before the last name, and I want it to print the initials after the last name. How do I do this? Also how do I add multiple authors without having to put and in between all authors?
Thank you in advance!
EDIT
This is a link to an MWE that I created in overleaf to show the problem: https://www.overleaf.com/read/yxxdcvstjfqd (only viewing)
