when I use the apa6 or article document class in english, there is no problem. But when I put it in french the names of authors in apa style (with apalike) are with uppercases and it's the same about the captions ("FIGURE 1 : caption of the..." and I'd like "Figure 1 : ...")
I did't found something that works on internet (or maybe I didn't made it well). About the bibliography tried that : Upper case author names for BST file (based on APA). Other stuff proposing to put commands in the preamble and it didn't worked also.
Thank you !
====
Edit :
Thank you Ralf Stubner, that works great ! And the keywords texdoc frenchb permitted me to find that, that will help me a lot in the future : http://texdoc.net/texmf-dist/doc/generic/babel-french/frenchb.pdf
(Yes, the first account was a guest one (was a stupid idea), I go to ask to merge them, thank you. Thank you also for explaining to me how works this forum.)
So, with the Ralf Stubner patch and using apacite as you advised Alan Munn, everything works, thanks !
\documentclass[french]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{babel}
\frenchsetup{SmallCapsFigTabCaptions=false}
\usepackage{times}
\usepackage{graphicx}
\usepackage{apacite}
\begin{document}
Some stuff with the reference \cite{ref}.
\begin{figure}[h!]
\caption{The letter A}
\includegraphics[width=0.2\textwidth]{fig.png}
\end{figure}
\bibliographystyle{apacite}
\bibliography{bib}
\end{document}
Result :
Instead of that before your help :
So I guess that's good for me (hope it will works on my computer as on overleaf), thank you again !



frenchoption ofbabel. Some may be able to be turned off. See thebabeldocumentation for how to do that. Theapalikestyle is quite old, and doesn't really implement true APA style. I would use either theapacitepackage along with theapacitebibliography style orbiblatexwith thestyle=apaoption. – Alan Munn Jul 17 '19 at 16:27babelpackage with the optionfrench? – Mico Jul 17 '19 at 16:28biblatex-apato easily customise if necessary. – Bernard Jul 17 '19 at 16:32