¿Cómo eliminar el espacio en blanco entre la imagen y la siguiente columna?

¿Cómo eliminar el espacio en blanco entre la imagen y la siguiente columna?
    \documentclass{article}
\usepackage{subcaption}
\usepackage[demo]{graphicx}
\usepackage{tabularx}

\begin{document}
\begin{table*}[h]
\renewcommand{\arraystretch}{1.2}

\begin{subtable}{0.22\textwidth}
\centering
\begin{tabular}{c}
\includegraphics[width=0.5\textwidth]{A.jpg}
\end{tabular}
\end{subtable}%
\begin{subtable}{0.75\textwidth}
\begin{tabular}{rp{27em}}
\textbf{SRC}: & caption1 \\
\textbf{Prototypa}: & caption2 \\
\textbf{MODEL2}: & caption3 \\
\textbf{MODEL3}: & caption4 \\
\textbf{MODEL4}: & caption5 \\

\end{tabular}
\end{subtable}

 \caption{ Examples how the model behaves.}
 \end{table*}
 \end{document}

Respuesta1

te sugiero que cambies

\begin{subtable}{0.22\textwidth}
\centering
\begin{tabular}{c}
\includegraphics[width=0.5\textwidth]{A.jpg}
\end{tabular}
\end{subtable}%

a

\begin{subtable}{0.22\textwidth}
\raggedleft
\includegraphics[width=0.5\textwidth]{A.jpg}
\end{subtable}%

y también cambiar

\begin{tabular}{rp{27em}}

a

\begin{tabular}{@{}rp{27em}}

La @{}partícula le indica a LaTeX que no inserte ningún espacio en blanco en el borde izquierdo del tabularentorno.


Un MWE completo:

ingrese la descripción de la imagen aquí

\documentclass{article}
\usepackage{subcaption}
\usepackage[demo]{graphicx}
\usepackage{tabularx}

\begin{document}
\begin{table*}[h]
\renewcommand{\arraystretch}{1.2}

\begin{subtable}{0.22\textwidth}
\raggedleft
\includegraphics[width=0.5\textwidth]{A.jpg}
\end{subtable}%
\begin{subtable}{0.75\textwidth}
\begin{tabular}{@{}rp{27em}}
\textbf{SRC}: & caption1 \\
\textbf{Prototypa}: & caption2 \\
\textbf{MODEL2}: & caption3 \\
\textbf{MODEL3}: & caption4 \\
\textbf{MODEL4}: & caption5 \\

\end{tabular}
\end{subtable}

 \caption{ Examples how the model behaves.}
 \end{table*}
 \end{document}

información relacionada