Example bibliography displays this way right now:
[1] John Doe et al. Book Title. Publisher, 2023.
I want it to display that way:
[1] Doe J., Smith A., Parker P., Edwards J. Book Title. Publisher, 2023.
I have absolutely no idea how to do it, no matter what I try it either doesn't compile or just does nothing. I'm considering abandoning automatic bibliography packages and simply do it manually. It will take a lot of time, but at least it will work, unlike biblatex.
Here is the code:
\documentclass[a4paper,10pt]{article}
\usepackage[english]{babel}
\usepackage[nottoc]{tocbibind}
\usepackage{biblatex}
\usepackage{csquotes}
\addbibresource{bibliography.bib}
\title{Bibliography management}
\author{Overleaf}
\begin{document}
\maketitle
\tableofcontents
\medskip
\section{First Section}
Cite \cite{author00}.
\medskip
\printbibliography
\end{document}
Bibliography file:
@book{author00,
title = {Book Title},
author = {John Doe and Adam Smith and Peter Parker and John Edwards},
year = {2023},
publisher = {Publisher},
}
![[1] Doe, J., Smith, A., Parker, P., Edwards, J. Book Title. Publisher, 2023.](../../images/e71fc749d1a57d6410c8b68dd22e4c36.webp)
Package biblatex Error: Style 'author-year' not found.Package biblatex Error: Style 'author-year' not found.Package biblatex Error: Command '\cite' undefined.Empty bibliography on input line 24The file 'output.bcf' does not contain any citations!– walter54 May 25 '23 at 14:05(1)orDoe et al 2023? Could you edit that into your question please, probably easy to use a default class and modify it – JamesT May 25 '23 at 14:07apais the closest to what I want (still not perfect though) but it breaks citation. – walter54 May 25 '23 at 14:08