答案1
像这样?
使用包makecell
,rotating
很\tabularx
简单:
\documentclass[11pt]{article}% Your documentclass
\usepackage{graphicx}
\usepackage{makecell, rotating, tabularx}
\renewcommand\tabularxcolumn[1]{m{#1}}
\newcolumntype{C}{>{\centering\arraybackslash}X}
\begin{document}
{
\settowidth\rotheadsize{Type 3}
\begin{tabularx}{\textwidth}{r C C C}
\rotcell{Type 1} & Name A\par\smallskip
\includegraphics[width=\hsize]{example-image-a}
& Name B\par\smallskip
\includegraphics[width=\hsize]{example-image-b}
& Name C\par\smallskip
\includegraphics[width=\hsize]{example-image-c} \\
\rotcell{Type 2} & \includegraphics[width=\hsize]{example-image-a}
& \includegraphics[width=\hsize]{example-image-b}
& \includegraphics[width=\hsize]{example-image-c} \\
\rotcell{Type 3} & \includegraphics[width=\hsize]{example-image-a}
& \includegraphics[width=\hsize]{example-image-b}
& \includegraphics[width=\hsize]{example-image-c}
\end{tabularx}
}
\end{document}