Bonjour,

Petit problème de bibliographie lors de citation d'auteurs à plusieurs prénoms en norme APA. Les initiales apparaissent dans la citation : D. T. Y. Mann et al., 2007 au lieu de Mann et al., 2007
Lorsque je regarde le document bibtex cela semble bon. Par exemple :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
@article{mannPerceptualcognitiveExpertiseSport2007,
	author = {Mann, Derek T. Y. and Williams, A. M. and Ward, Paul and Janelle, Christopher M.},
	doi = {10.1123/jsep.29.4.457},
	file = {Mann et al. - 2007 - Perceptual-Cognitive Expertise in Sport A Meta-An.pdf:/Users/MildredTaupin/Zotero/storage/7BNLSYSM/Mann et al. - 2007 - Perceptual-Cognitive Expertise in Sport A Meta-An.pdf:application/pdf},
	issn = {0895-2779, 1543-2904},
	journal = {Journal of Sport and Exercise Psychology},
	language = {en},
	number = {4},
	pages = {457--478},
	shorttitle = {Perceptual-{Cognitive} {Expertise} in {Sport}},
	title = {Perceptual-cognitive expertise in sport: a meta-analysis},
	url = {http://journals.humankinetics.com/doi/10.1123/jsep.29.4.457},
	urldate = {2019-01-18},
	volume = {29},
	year = {2007},
	Bdsk-Url-1 = {http://journals.humankinetics.com/doi/10.1123/jsep.29.4.457},
	Bdsk-Url-2 = {https://doi.org/10.1123/jsep.29.4.457}}
J'utilise la blibliographie apacite.

Voici mon document :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
\documentclass[12pt,a4paper,openany]{book}
\usepackage[utf8x]{inputenc} %permet accent
\usepackage[T1]{fontenc} %codage sortie accent
\usepackage{fancyhdr}
\hyphenpenalty 10000 
\usepackage[french]{babel}
 
% Bibliographie
\usepackage{apacite}
\RequirePackage{apacite}
\renewcommand{\url}{}
\renewcommand{\doiprefix}{}
\newcommand{\doi}[1]{https://doi.org/#1}
 
 
 
\begin{document}
 
 
Ainsi, blabla \cite{mannPerceptualcognitiveExpertiseSport2007}.
 
\bibliographystyle{apacite}
\bibliography{Bibliographie}
\end{document}



Quelqu'un sait-il comment faire disparaitre ce problème ? Merci par avance !