I am trying to use biblatex for citation. Whenever I am trying to use more than two authors for citation instead of using "et. al." , citation show the name of these three authors like this : D. O. Trad, Ulrych, and Sacchi, 2002 instead of Trad et al. (2002).
@article{trad2002accurate,
title={Accurate interpolation with high-resolution time-variant Radon transforms},
author={Trad, Daniel O and Ulrych, Tadeusz J and Sacchi, Mauricio D},
journal={Geophysics},
volume={67},
number={2},
pages={644--656},
year={2002},
publisher={Society of Exploration Geophysicists}
}
I am using it as :
\documentclass{article}
\usepackage[style=apa]{biblatex}
\addbibresource{paper References.bib}
\begin{document}
\section*{INTRODUCTION}
Reconstruction of seismic traces is important to provide a good sampling rate (\cite{cai2014data})
\printbibliography
\end{document}
I tried to change the style of the bibliography using ieee, Chicago, natural, apa, mla but I can't get Trad et al. 2002 as was I expected.
style=apa(ofbiblatex-apa), which is a comprehensive implementation of the citation guidelines of the American Psychological Association (6th ed. of the Publication Manual of the American Psychological Association). There are quite specific rules for the number of authors displayed in citations in APA style. The output you seem to want is not compatible with that. Sincebiblatex-apawas specifically written to implement APA style as far as possible, there are fewer customisation options. In your case I suggest to dropstyle=apain favour ofstyle=authoryear... – moewe Nov 04 '19 at 05:09maxcitenames=2should do what you want. – moewe Nov 04 '19 at 05:09maxcitenames=1andmincitenames=1should do what you want. – Paul Gaborit Nov 04 '19 at 13:54mincitenames=1is already the default value for all standard styles (since they setminnames=1), so it need not be set explicitly. I prefermacitenames=2overmaxcitanames=1because the former will not shorten lists of two names such as "Sigfridsson and Ryde" to "Sigfridsson et al.". – moewe Nov 05 '19 at 06:40