\documentclass[fontsize=12pt,oneside,headsepline]{scrbook}
\usepackage[demo]{graphicx}
\usepackage{csquotes}
\usepackage[style=apa,natbib=true,backend=biber,uniquename=false,pagetracker=true]{biblatex}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\DeclareLanguageMapping{german}{german-apa}
\DeclareFieldFormat{apacase}{#1}
\DefineBibliographyStrings{ngerman}{
andothers = {{et al\adddot}}, }
\usepackage{filecontents}
\addbibresource{\jobname.bib}
\begin{filecontents}{\jobname.bib}
@article{zapkau2015,
author = {Florian B. Zapkau and Christian Schwens and Holger Steinmetz and R{\"u}diger Kabst},
title = {Disentangling the effect of prior entrepreneurial exposure on entrepreneurial intention},
journal = {Journal of Business Research},
year = {2015},
volume = {68},
number = {3},
pages = {639 - 653},
issn = {0148-2963},
keywords = {Prior entrepreneurial exposure, Role models, Work experience, Entrepreneurial intention, Theory of planned behavior },
}
\end{filecontents}
\begin{document}
Some Text ...\citep{zapkau2015}.
More Text ...
\begin{figure}[h]
\centering
\caption{Caption Text \citet{zapkau2015}.} \label{fig:forschungsmodell}
\vspace{2ex}
\includegraphics[width=0.7\linewidth]{TPB.eps}\\
\end{figure}
\end{document}
Here my problem is: Citing zapkau for the first time brings the all author's names. And here, that is right. Citing zapkau more than one time brings an "et al." after the author's names when being used in the text.
PROBLEM:
When citing in a figure's caption, it's again:
I scanned other solutions but there does not seem to be one which works in my case. Thanks in advance for your help! :-)





\includegraphics[width=3cm]{example-image}. – Bobyandbob Feb 28 '17 at 17:53epsfigis a package existing only for back compatibility with older documents and should not be used in new documents. Usegraphicxand\includegraphics. It's not the cause for the problem. The example is far from minimal. – egreg Feb 28 '17 at 18:03zapkau2015bib entry. – Mico Feb 28 '17 at 18:34biblatexconsiders figures to be outside the flow of text. So its 'trackers' are disabled there. Sobiblatexcan not check if an entry has been seen/cited before in a figure. Have a look at \footcite always prints long citation if used infigureenvironment. If that does not work for you, please prepare a proper MWE/MWEB: most of the packages in your preamble are not important to the question, yet we lack the bib file. – moewe Mar 01 '17 at 09:07.epsand there was the classic\DeclareLanguageMappingmissing. – moewe Mar 01 '17 at 18:01