Graphics, Figures & TablesGraphics Arrangement

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
steinchen
Posts: 21
Joined: Thu Oct 29, 2009 12:18 pm

Graphics Arrangement

Post by steinchen »

Dear group,

I have struggled/googled quite a while, but still could not find the solution for. I would like to have three pictures arranged as left, right top, right down, tried subfigure, \mbox, \parbox, not OK, could anyone help?

I appreciate your expertise and any hints!
Last edited by steinchen on Tue Nov 10, 2009 9:43 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

steinchen
Posts: 21
Joined: Thu Oct 29, 2009 12:18 pm

Graphics Arrangement

Post by steinchen »

I got some progress for the problem and it could be partially solved as:

Code: Select all

\begin{figure}[ht]
	\begin{minipage}[b]{0.5\linewidth}
	\centering
	\includegraphics[scale=0.5]{1.jpg}
	\end{minipage} 
	\hspace{0.1cm}   % No empty line before and after
	\begin{minipage}[b]{0.5\linewidth}
	\centering
	\includegraphics[scale=0.5]{2.jpg}\\[3mm]
	\includegraphics[scale=0.5]{3.jpg}
	\end{minipage}
	\caption{My caption}
	\label{fig:figure}	
\end{figure}
It is not perfect in case each need a separate caption. But it works for me. Another one solution would be rotate the slender JPG to be horizontal, then it is easy.

Thanks in advance!
TomF
Posts: 3
Joined: Fri Apr 06, 2012 5:09 am

Graphics Arrangement

Post by TomF »

Hi,

I've just come across this problem myself and this is how I managed to get an acceptable output. Adjust lengths to suit your images.

Code: Select all

\usepackage{subfigure} %

\begin{figure}[htbp]
\begin{center}
\subfigure[<Subcaption a>]{\label{fig:1a}
\includegraphics[width=0.48\textwidth]{<Fig1a file>}}% First Subfigure full height left side
\quad % Inter subfigure space
% Set up minipage of appropriate width aligning to the bottom to hold right side subfigures
\begin{minipage}[b]{0.45\textwidth} % 
\subfigure[<Subcaption b>]{\label{fig:1b}
\includegraphics[width=0.9\textwidth]{<Fig1b file>}}% Second subfigure top right side

\subfigure[<Subcaption c>]{\label{fig:1c}
\includegraphics[width=0.9\textwidth]{<Fig1c file>}}% Third subfigure bottom right side
\end{minipage}
\caption[<figure caption>\label{fig:1}} %
\end{center}
\end{figure}
Regards,

TomF
Last edited by localghost on Mon Apr 09, 2012 1:07 pm, edited 2 times in total.
User avatar
localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Graphics Arrangement

Post by localghost »

TomF wrote:[…] I've just come across this problem myself and this is how I managed to get an acceptable output. Adjust lengths to suit your images. […]
The subfigure package is obsolete. Furthermore the {center} environment should be replaced by the \centering declaration command in order to avoid additional vertical space, which is mostly unwanted in cases like this.

It is best to always give a full example so that the solution can be tested instantly.


Thorsten
Post Reply