Got in to trouble creating a figure containing multiple pictures/plots.
My idea was to show three photos each with one plot underneath.
Started out with:
Code: Select all
\begin{figure}[hhh]
\begin{center}
\vbox{
\hbox{
\subfloat{\includegraphics[clip=true, trim=0cm 0cm 0cm 0cm ,width=60mm, height=25mm]{photo1.jpg}}
\subfloat{\includegraphics[clip=true, trim=0cm 0.5cm 0cm 0.5cm ,width=60mm, height=25mm]{photo2.jpg}}
\subfloat{\includegraphics[clip=true, trim=0cm 0cm 0cm 0cm ,width=60mm, height=25mm]{photo3.jpg}}
}
\hbox{
\subfloat[Subcaption 1]{\includegraphics[clip=true,trim=7cm 8.0cm 5.5cm 8.5cm, width=60mm]{plot1.pdf}}
\subfloat[Subcaption 2]{\includegraphics[clip=true,trim=7cm 8.0cm 5.5cm 8.5cm, width=60mm]{plot2.pdf}}
\subfloat[Subcaption 3]{\includegraphics[clip=true,trim=7cm 8.0cm 5.5cm 8.5cm, width=60mm]{plot3.pdf}}
}
}
\end{center}
\caption{Photos from experiments compared with plots from analyses }
\label{whatever}
\end{figure}
Re-thinking:
Code: Select all
\begin{figure}[hhh]
\begin{center}
\hbox{
\subfloat[Subcaption 1]{
\vbox{
\includegraphics[clip=true, trim=0cm 0cm 0cm 0cm ,width=60mm, height=25mm]{photo1.jpg}
\includegraphics[clip=true,trim=7cm 8.0cm 5.5cm 8.5cm, width=60mm]{plot1.pdf}
}
}
\subfloat[Subcaption 2]{
\vbox{
\includegraphics[clip=true, trim=0cm 0.5cm 0cm 0.5cm ,width=60mm, height=25mm]{photo2.jpg}
\includegraphics[clip=true,trim=7cm 8.0cm 5.5cm 8.5cm, width=60mm]{plot2.pdf}
}
}
\subfloat[Subcaption 3]{
\vbox{
\includegraphics[clip=true, trim=0cm 0cm 0cm 0cm ,width=60mm, height=25mm]{photo3.jpg}
\includegraphics[clip=true,trim=7cm 8.0cm 5.5cm 8.5cm, width=60mm]{plot3.pdf}
}
}
}
\end{center}
\caption{Photos from experiments compared with plots from analyses }
\label{whatever}
\end{figure}
\FloatBarrier
My third idea is då a hbox with three subfloat-environments, eachs with a tikzpicture containing photo + plot vertically alligned... This feels a bit overworked though...
Any ideas?
Thanks in advance
/David