[Tex/LaTex] How to center a caption inside a minipage

captionshorizontal alignment

In this moment I have something like that

enter image description here

and I want this

enter image description here

and this is the portion of the code

\begin{minipage}[b]{0.4\linewidth}
    \subsection{Tercera Configuraci\'on}
    Con ayuda de un gancho conductor tipo cocodrilo, conectar los polos positivo y negativo, en una misma linea de conducci\'on pero en diferentes nodos. (Ver Figura 4)
\vspace{1.3cm}
\end{minipage}
\hfill
\begin{minipage}[b]{0.53\linewidth}
    \includegraphics[scale=0.14]{CuboTres.png}
    \captionsetup{justification=centering}
    \captionof{figure}{Tercer montaje}
\end{minipage}

I saw this similar question " How to center a specific caption? " but in my case doesn't work.

I'm using MiKTeX and TeXworks.

Best Answer

A \centering inside the minipage should do the trick, working on my side.

\begin{minipage}[b]{0.4\linewidth}
\subsection{Tercera Configuraci\'on}
Con ...
\vspace{1.3cm}
\end{minipage}
\hfill
\begin{minipage}[b]{0.53\linewidth}
\centering
   \includegraphics[scale=0.14]{CuboTres.png}
   \captionsetup{justification=centering}
   \captionof{figure}{Tercer montaje}
\end{minipage}

regards