I would like to move the date after the journal name and add a subsequent semi-colon in a biblatex bibliography.
Here is example.bib
@article{Bopper:2019aa,
abstract = {},
author = {Bopper, Big},
date-added = {2024-01-18 21:26:11 -0800},
date-modified = {2024-01-18 21:26:11 -0800},
doi = {111.222.3333},
journal = {Lace Studies},
journal-full = {Lace Studies},
mesh = {},
month = {Jan},
number = {D1},
pages = {55-77},
pmc = {1234},
pmid = {555},
pst = {ppublish},
title = {Chantilly Lace},
volume = {4},
year = {2021},
bdsk-url-1 = {https://doi.org/111/lacey/1234}
}
And here is a (reasonably?) MWE:
\documentclass[10pt, a4paper, twocolumn]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{csquotes}
\usepackage[
backend=biber,
defernumbers=true,
style=numeric,
bibstyle=authoryear,
date=year,
uniquelist=false,
uniquename=false,
sorting=none,
giveninits,
terseinits,
dashed=false
]
{biblatex}
% https://tex.stackexchange.com/questions/428190/how-to-properly-remove-the-parentheses-around-the-year-in-authoryear-style-v
\usepackage{xpatch}
\xpatchbibmacro{date+extradate}{%
\printtext[parens]%
}{%
\setunit{\addperiod\space}%
\printtext%
}{}{}
% https://tex.stackexchange.com/questions/52498/plos-comp-bio-biblatex-style
% Name list format
\renewcommand{\labelnamepunct}{\addspace}
\renewcommand{\finalnamedelim}{%
\ifbibliography{\addcomma\space}{\addspace&\space}}
\renewcommand*{\revsdnamepunct}{}
\DeclareNameAlias{sortname}{last-first}
\addbibresource{example.bib}
\begin{document}
It is a funny world \autocite{Bopper:2019aa}
\printbibliography
\end{document}
The output is
I would like the bibliography entry to display the date "2021" after the journal name "Lace Studies", place a period after the journal name, and in addition place a semi-colon and space between the newly positioned date and the volume entry "4.D1", thus: "Lace Studies. 2021; 4.D1".


bibstyle=authoryear,you explicitly request a style that puts the year directly after the authors in the bibliography. Is that intended? What do you want to happen for other entry types? – moewe Feb 13 '24 at 21:37