[Tex/LaTex] How to add images inside the table in beamer

beamerfloatstablesthemes

I need to insert the images in the table in Beamer as shown below

enter image description here

The shown figure should be one frame in beamer and table must have the boarder

I am using "Torino" theme in my beamer

can any body tell the beamer code for this…..

thanks in advance…..

Best Answer

Something like this may be a start though it needs tidying:

\documentclass{beamer}
\usepackage{multirow}
\begin{document}
  \begin{frame}
    \begin{tabular}{|*{4}{c|}} \hline
      & & & \\\hline
      \multirow{3}*{\includegraphics[width=.2\textwidth]{example-image-golden-upright}} &   \includegraphics[width=.2\textwidth]{example-image-a} & \includegraphics[width=.2\textwidth]{example-image-a} & \hspace*{.205\textwidth}\\\cline{2-3}
      & \includegraphics[width=.2\textwidth]{example-image-a} & \includegraphics[width=.2\textwidth]{example-image-a} & \\\cline{2-3}
      & \includegraphics[width=.2\textwidth]{example-image-a} & \includegraphics[width=.2\textwidth]{example-image-a} & \\\hline
    \end{tabular}
  \end{frame}
\end{document}

Images in tabular

EDIT

To put an image in the final column, as requested in the comments, you can do something like this:

\documentclass{beamer}
\usepackage{multirow}
\begin{document}
  \begin{frame}
    \begin{tabular}{|*{4}{c|}} \hline
      & & & \\\hline
      \multirow{3}*{\includegraphics[width=.2\textwidth]{example-image-golden-upright}} &   \includegraphics[width=.2\textwidth]{example-image-a} & \includegraphics[width=.2\textwidth]{example-image-a} & \multirow{3}*{\includegraphics[width=.2\textwidth]{example-image-golden-upright}}\\\cline{2-3}
      & \includegraphics[width=.2\textwidth]{example-image-a} & \includegraphics[width=.2\textwidth]{example-image-a} & \\\cline{2-3}
      & \includegraphics[width=.2\textwidth]{example-image-a} & \includegraphics[width=.2\textwidth]{example-image-a} & \\\hline
    \end{tabular}
  \end{frame}
\end{document}

More images

Related Question