I have problems with "natbib" (I guess, I'm not so familiar with this, so the problem could be elsewhere).
APA style requires author-in-text citations to be separated by an "and" instead of the "&". According to the natbib-documentation this should automatically be done when using \citet*{}. However it doesn't work. "&" is used. This is a basic version of my file:
Code: Select all
\documentclass[man]{apa}
\usepackage[sort]{natbib}
%\usepackage{apalike} % I tried this but it doesn't have an effect
\begin{document}
in-text should be with "and" \citet*{martiny-huenger_distractor_2013} and in parentheses should be with "\&" \citep*{martiny-huenger_distractor_2013} blabla
%\bibliographystyle{plainnat} % also no obvious effect
\bibliography{bibtex_file}
\end{document}
In the bibtex_file I have this:
Code: Select all
@article{martiny-huenger_distractor_2013,
title = {Distractor Devaluation in a Flanker Task: Object-Specific Effects Without Distractor Recognition Memory.},
doi = {10.1037/a0034130},
journal = {Journal of Experimental Psychology: Human Perception and Performance},
author = {Martiny-Huenger, Torsten and Gollwitzer, Peter M. and Oettingen, Gabriele},
year = {2013}
},
Thanks,
Torsten