在表格中添加子标题

在表格中添加子标题

我想为子图添加子标题,并在图下方添加一个标题。我该如何将其添加到我的代码中?下面的代码没有任何标题。布局如下: 在此处输入图片描述

\documentclass[12pt, a4paper]{report}
\usepackage[export]{adjustbox}
\begin{document}

\begin{tabular}{cc}
\begin{adjustbox}{valign=t}

  \includegraphics[width=2.5in,height=4in]{setupemb}


\end{adjustbox}
&
\begin{adjustbox}{valign=t}
\begin{tabular}{@{}c@{}}

  \includegraphics[width=2in,height=1.9in]{setup3}

  \\[2ex]
  \includegraphics[width=2in,height=1.9in]{metal2}
\end{tabular}
\end{adjustbox}

\end{tabular}
\end{document}

相关内容