\begin{figure}
\subfigure{\includegraphics[width=67mm]{PipeScannerUnderGround}}
\subfigure{\includegraphics[width=47mm]{CylScanGeometryPipe}}
\caption{}
\end{figure}
produces the following figure:
which seems a little lopsided. I found a nice solution at stackoverflow: Use the \raisebox command to adjust the vertical position of individual subfigures, for example
\begin{figure}
\subfigure{\includegraphics[width=67mm]{PipeScannerUnderGround}}
\subfigure{\raisebox{10mm}{\includegraphics[width=47mm]{CylScanGeometryPipe}}}
\caption{}
\end{figure}
which yields the following result:
Much nicer! :)
5 comments:
Thanks, that was very helpful!
Much easier than other solutions I found so far.
Many, many thanks!
Thank you
Thank you. This really helps me.
Your blog is really helpful, thanks for posting!
Is there also a solution for horizontal alignment?
Post a Comment