I'm using the acs-chem style in biblatex, writing in Spanish.
I'm trying to change the "y" that appears before the last author in the bibliography for a ";", like if it wasn't the last one.
I tried \renewcommand{\finalnamedelim}{;} and also this, but neither of them work.
\documentclass[12pt,a4paper,twoside,openright,notitlepage]{report}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage[english,spanish]{babel}
\usepackage[
style=chem-acs,
maxnames=10,
minnames=10
]{biblatex}
\DefineBibliographyStrings{spanish}{%
andothers = {et\addabbrvspace al\adddot};
and = {;}
}
\renewcommand{\andothersdelim}{; }
\addbibresource{biblatex-examples.bib}
\begin{document}
Lorem \autocite{aksin} ipsum \autocite{baez/article}
\printbibliography
\end{document}
