I would like to change the finalnamedelim into "and" instead of "&" when using the \fullcite command (actually, when using any citing command). I am able to do that into the bibliography only with:
\AtBeginBibliography{% this puts "and" instead of "&" in the bibliography
\renewcommand*{\finalnamedelim}{\space\bibstring{and}\space}%
}
How can I do that everywhere? Also, I need this to work with both a normal document and beamer. Thank you!
The full code is provided here:
\documentclass{beamer}
\usepackage[english]{babel}
\usetheme{CambridgeUS}
\usebeamercolor{beaver}
\usepackage[style=apa,uniquename=false,backend=biber]{biblatex}
\DeclareLanguageMapping{english}{english-apa}
\AtBeginBibliography{% this puts "and" instead of "&" in the bibliography
\renewcommand*{\finalnamedelim}{\space\bibstring{and}\space}%
}
\bibliography{references.bib}
\setlength{\bibhang}{0pt}
\begin{document}
\begin{frame}{Literature}
\fullcite{acemoglu2013political}
\end{frame}
\end{document}

biblatex-apa.finalnamedelim:apa:family-givenis a special delimiter to solve the problems of https://tex.stackexchange.com/q/417648/35864. It is present from v7.6 onwards. – moewe Mar 20 '18 at 14:06