I'm using biblatex-apa to format citations and reference list. I would like to change & separator to and when using parencite citation command, e.g.:
\parencite{ref1}--> (author and author, 2013)\parencite{ref2}--> (author, author and author, 2014)
I already successfully re-declare delimiter in the reference list using the commands:
\AtBeginBibliography{\renewcommand*{\finalnamedelim}{%
\ifthenelse{\value{listcount}>\maxprtauth}
{}
{\ifthenelse{\value{liststop}>2}
{\finalandcomma\addspace{}and\space}
{\addspace{}and\space}}}}
but have no idea how to change separator for citations. Any ideas or pointers would be greatly appreciated.
MWE:
\documentclass{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[american]{babel}
\usepackage[babel]{csquotes}
\usepackage{filecontents}
\usepackage[backend=biber,style=apa,hyperref]{biblatex}
\DeclareLanguageMapping{american}{american-apa}
\begin{filecontents}{mybib.bib}
@article{ref1,
author = {Guyon, Isabelle and Elisseeff, Andr\'{e}},
journal = {The Journal of Machine Learning Research},
pages = {1157--1182},
title = {{An introduction to variable and feature selection}},
volume = {3},
year = {2003}
}
@book{ref2,
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}
\begin{document}
Lorem ipsum dolor sit amet \parencite{ref1}, consectetur adipiscing elit \parencite{ref2}.
\printbibliography
\end{document}

\parencitecitations or all citations? Also, an MWE would be greatly appreciated, so we can just try away our ideas for solutions, and don't have to set up a new document ourselves. Am I right in thinking you want "and" in citations and the bibliography as well? – moewe Sep 10 '14 at 10:36\parencitecommand. I'm working on MWE. – Andrej Sep 10 '14 at 10:43\parenciteis not to be treated differently from the other cite commands. – moewe Sep 10 '14 at 10:44