Here's a MWE code showing that class and a few options :Package frenchb.ldf Warning: Figures' and tables' captions might look like
(frenchb.ldf) `Figure 1:' which is wrong in French.
(frenchb.ldf) Check your class or packages to change this;
(frenchb.ldf) reported on input line 17.
Code: Select all
\RequirePackage[l2tabu,orthodox]{nag}
\documentclass[11pt,nofootinbib,eqsecnum,twosides]{revtex4-1}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{graphicx,xcolor}
\usepackage{here}
\usepackage{hyperref}
\usepackage{subfigure}
\begin{document}
\title {Some article title in French}
\author{Some Guy}
\email{email@somewhere.ca}
\affiliation{Some departement}
\begin{abstract}
Some French text.
\end{abstract}
\maketitle
\section{Introduction}
Some introduction.
\section{Some title}
Something here.
\begin{figure}[htbp]
\centering
\subfigure[Description 1.]{\includegraphics[width=0.4\textwidth]{example-image-a}}
\qquad
\subfigure[Description 2.]{\includegraphics[width=0.4\textwidth]{example-image-b}}
\caption{Some description.}
\label{ }
\end{figure}
\section*{Remerciements}
A few thanks.
\begin{thebibliography}{999}
\bibitem{bibitem1}
A.~Someone \& B.~Someonelse, ``Titre de l'article 1'', Found.\ Phys.\ \textbf{11}, no. 8, 299 (2037).
\bibitem{bibitem2}
C.~Someone \& D.~Someonelse, ``Titre de l'article 2'', Phys.\ Rev.\ D \textbf{12}, 103522 (2052).
\end{thebibliography}
\end{document}
I'm expecting that the answer is "no", and that I'll have to customize another class all from scratch, but maybe I'm wrong.