[Tex/LaTex] Period after last author name in biblatex when terseinits = true

biblatexpunctuation

My reference style requires author initials without period-space but between the author list and year there should be a period, e.g.

Cho JC, Kim MW, Lee DH, Kim SJ. (1997). Response of bacterial communities to changes in composition of extracellular organic carbon from phytoplankton in Daechung reservoir (Korea). Arch Hydrobiol 138:559–576.

Trouble is that author and year are produced together using \usebibmacro{author/translator+others} which is a basic biblatex macro.

Any tips on how to modify that?

p.s
for some reason the solution suggested here using \renewcommand{\labelnamepunct}{} doesn't seem to work in my case

Best Answer

You need to patch the date+extrayear bibmacro. (The solution is a slight modification of biblatex: How to remove the parentheses around the year in authoryear style?)

\documentclass{article}

\usepackage[style=authoryear,firstinits=true,terseinits=true]{biblatex}

\usepackage{xpatch}

\DeclareNameAlias{sortname}{last-first}
\renewcommand*{\revsdnamepunct}{}
\renewcommand*{\finalnamedelim}{\addcomma\space}

\xpretobibmacro{date+extrayear}{%
  \setunit{\addperiod\space}%
}{}{}

\usepackage{filecontents}

\begin{filecontents}{\jobname.bib}
@misc{A01,
  author = {Author, A. A. and Buthor, B. B. and Cuthor, C. C.},
  year = {2001},
  title = {Alpha},
}
\end{filecontents}

\addbibresource{\jobname.bib}

\nocite{*}

\begin{document}

\printbibliography

\end{document}

enter image description here