I am trying to create a table which includes 5 figures.It should look like this:
Code: Select all
| | b | c |
| a |---|---|
| | d | e |
Each image schould have its own caption a), b), c)...
and beneath the table there should be a caption for all images. I don't need a border.
Who can I do this. It works like this:
Code: Select all
\begin{tabular}{ccc}
\multirow{2}{*}{
\includegraphics[width = 0.4\textwidth]{figures/1.PNG}
} &
\includegraphics[width = 0.2\textwidth]{figures/2.PNG}
&
\includegraphics[width = 0.2\textwidth]{figures/3.PNG}
\\ &
\includegraphics[width = 0.2\textwidth]{figures/5.PNG}
&
\includegraphics[width = 0.2\textwidth]{figures/6.PNG}
\\
\end{tabular}
Does someone have a solution for this problem?
Thanks for your help!
Michael