I'd like to change the author separator from the current ampersand & to and. I've apparently been able to get some control over the separator in the citation, but so far haven't found the trick to control it in the bibliography.
Here is essentially the same question, but the answers are now apparently obsolete, after a thorough rewrite of biblatex https://tex.stackexchange.com/questions/200467/
I have found two ways to change the separator in the citation, with \finalnamedelim and with \DefineBibliographyStrings. How can I control the separator in the bibliography?
Here is my commented MWE:
\documentclass{article}
\usepackage[backend=biber,hyperref,style=apa,citestyle=authoryear,maxcitenames=6]{biblatex}
\begin{filecontents}{mybib.bib}
@book{ref,
author = {Michel Goossens and Frank Mittelbach and Alexander Samarin},
title = {The LaTeX Companion},
year = {1993},
publisher = {Addison-Wesley},
address = {Reading, Massachusetts}
}
\end{filecontents}
\addbibresource{mybib.bib}
\AtBeginDocument{%
\renewcommand*{\finalandcomma}{}
\renewcommand*{\finalnamedelim}{\space and\space}
}
% With \parencite and \textcite, the ampersand can be removed by adding the biblatex option citestyle=authoryear. But it can also be set here, except that \finalnamedelim overrules:
\DefineBibliographyStrings{english}{%
and = {y}%
}
\begin{document}
\begin{itemize}
\item[] A cite: \cite{ref}.
\item[] A parencite: \parencite{ref}.
\item[] A textcite: \textcite{ref}.
\end{itemize}
\printbibliography
\end{document}


citestyle=apaas well or do you have a good reason forstyle=apa,citestyle=authoryear? – moewe Jul 05 '18 at 21:27Goosens, Mittelbach, and Samarin (1993). I have usedstyle=apaandcitestyle=apafor reasons I forget. If there's a better way, I'm happy to learn. – PatrickT Jul 05 '18 at 21:31biblatexoptionhyperref=true(hyperrefwithout a value is equivalent tohyperref=true) is not better than the defaulthyperref=auto. Both will enable links if and only if thehyperrefpackage is loaded. The only difference between the two is thathyperref=truewarns you if you failed to load thehyperrefpackage. – moewe Jul 05 '18 at 21:48