[Tex/LaTex] How to change “Figs. 1 and 3” to “Figs. 1 et 3”

cleveref

In this example, how can I customize \cref{fig:1,fig:3}? I.e instead of having (Figs. 1 and 3), I would like to have (Figs. 1 et 3). The same question with \Cref{fig:1,fig:3}.

\documentclass[10pt,a4paper]{article}
\usepackage[T1]{fontenc}
\usepackage{lmodern}
\usepackage{todonotes}
\usepackage[colorlinks,linkcolor=blue]{hyperref}
\usepackage[nameinlink,capitalise]{cleveref}

\newcommand{\crefrangeconjunction}{--}

\begin{document}

\begin{figure}[t!]
\caption{Missing figure 1.}\label{fig:1}
\caption{Missing figure 2.}\label{fig:2}
\caption{Missing figure 3.}\label{fig:3}
\end{figure}

\obeylines 
Single figure: \cref{fig:2}
Two figures: \cref{fig:1,fig:3}
Range of consecutive figures: \cref{fig:1,fig:2,fig:3}, \crefrange{fig:1}{fig:3}

\vspace{.5cm}

Single figure: \Cref{fig:2}
Two figures: \Cref{fig:1,fig:3}
Range of consecutive figures: \Cref{fig:1,fig:2,fig:3}, \Crefrange{fig:1}{fig:3}

\end{document}

Best Answer

You need to set the macro \crefpairconjunction. Specifically, run

\newcommand{\crefpairconjunction}{ et }

after loading cleveref.

See also p. 13 of the user guide of the cleveref package.

Related Question