modification Modification de l'espace à l'intérieur d'une légende
Je voudrais savoir s'il est possible de modifier l'espace entre le numéro de la figure et la légende. En effet, le contenu de la légende se limite à une égalité : $s=0,1$ par exemple et dans mon rapport, 0,1 passe à la ligne et donc la légende est sur deux lignes.
Dans l'ECM ci-dessous, on ne voit pas le problème car le numéro de l'image est juste un chiffre, mais s'il devient un nombre à plus de deux chiffres, le nombre de l'égalité passe en-dessous.
\documentclass[10pt]{article}
\usepackage[french]{babel}
\usepackage[a4paper,left=10mm,right=10mm,top=20mm,bottom=20mm]{geometry}
\usepackage{pgfplots} % pour les images
\usepackage[locale=FR]{siunitx}
\usepackage{fancyhdr}
\usepackage{caption}
\fancyhead[R]{}
\fancyhead[C]{}
\fancyhead[R]{\leftmark}
\fancyfoot[L]{}
\fancyfoot[C]{}
\fancyfoot[R]{page \thepage}
\DecimalMathComma % la virgule dans les nombres.
\makeatletter
\newcommand\fcaption{\captionsetup{font=footnotesize}\def\@captype{figure}\caption}
\newcommand\tcaption{\captionsetup{font=footnotesize}\def\@captype{table}\caption}
\makeatother
\begin{document}
\noindent
\begin{tabular}{cccccc}
\hspace*{-5mm}
\begin{minipage}[t]{0.15\linewidth}
\includegraphics[clip,scale=0.23]{../calcul-correlation-length/20200206-ccl-study/20200206-C3-psp2vp-188k-2,5p-60micrL-rpm4000-30s-SVA1000-spm1-aip-zscale=automatic-sens=0-binarised.jpg}
\fcaption{$s=0$}
\end{minipage}
&
\begin{minipage}[t]{0.15\linewidth}
\includegraphics[clip,scale=0.23]{../calcul-correlation-length/20200206-ccl-study/20200206-C3-psp2vp-188k-2,5p-60micrL-rpm4000-30s-SVA1000-spm1-aip-zscale=automatic-sens=0,1-binarised.jpg}
\fcaption{$s=0,1$}
\end{minipage}
&
\begin{minipage}[t]{0.15\linewidth}
\includegraphics[clip,scale=0.23]{../calcul-correlation-length/20200206-ccl-study/20200206-C3-psp2vp-188k-2,5p-60micrL-rpm4000-30s-SVA1000-spm1-aip-zscale=automatic-sens=0,2-binarised.jpg}
\fcaption{$s=0,2$}
\end{minipage}
&
\begin{minipage}[t]{0.15\linewidth}
\includegraphics[clip,scale=0.23]{../calcul-correlation-length/20200206-ccl-study/20200206-C3-psp2vp-188k-2,5p-60micrL-rpm4000-30s-SVA1000-spm1-aip-zscale=automatic-sens=0,3-binarised.jpg}
\fcaption{$s=0,3$}
\end{minipage}
&
\begin{minipage}[t]{0.15\linewidth}
\includegraphics[clip,scale=0.23]{../calcul-correlation-length/20200206-ccl-study/20200206-C3-psp2vp-188k-2,5p-60micrL-rpm4000-30s-SVA1000-spm1-aip-zscale=automatic-sens=0,4-binarised.jpg}
\fcaption{$s=0,4$}
\end{minipage}
&\begin{minipage}[t]{0.15\linewidth}
\includegraphics[clip,scale=0.23]{../calcul-correlation-length/20200206-ccl-study/20200206-C3-psp2vp-188k-2,5p-60micrL-rpm4000-30s-SVA1000-spm1-aip-zscale=automatic-sens=0,5-binarised.jpg}
\fcaption{$s=0,5$}
\end{minipage}
\end{tabular}
\end{document}