
\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}
답변1
바꾸시길 권합니다
\begin{subtable}{0.22\textwidth}
\centering
\begin{tabular}{c}
\includegraphics[width=0.5\textwidth]{A.jpg}
\end{tabular}
\end{subtable}%
에게
\begin{subtable}{0.22\textwidth}
\raggedleft
\includegraphics[width=0.5\textwidth]{A.jpg}
\end{subtable}%
그리고 또한 변화한다
\begin{tabular}{rp{27em}}
에게
\begin{tabular}{@{}rp{27em}}
입자 @{}
는 LaTeX에게 환경의 왼쪽 가장자리에 공백 패딩을 삽입하지 않도록 지시합니다 tabular
.
전체 MWE:
\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}