View Full Version : Figures in LaTex
Clausius2
Oct31-04, 05:58 AM
Hi,
I don't really know how to put a figure aside to another. I mean, If "X" is a figure, what can I do to make:
X X
in the same line.
Thanks.
graphic7
Oct31-04, 07:50 AM
LaTeX is very picky about figures. Even if you specify where you'd like the figure on the page, sometimes, it'll move it just because it wants to. You can try setting the position to argument to [h], which means "here." LaTeX will then try to place the figure where you want it.
I'm not sure if figure automatically does newlines, in that case you'll be screwed. But, try it. Make sure you don't newline between the figures.
Clausius2
Oct31-04, 07:56 AM
Thanks. I've been googling and finally I've found how to do about that.
Yes, LaTex has an automatic newline between figures.
Here it is what I found:
\begin{figure}
\begin{minipage}[t]{8cm}
\begin{center}
\includegraphics[width=8cm,clip]{figure1.eps}
\caption[Short caption for figure 1]{\label{labelFig1} Long caption figure 1}
\end{center}
\end{minipage}
\hfill
\begin{minipage}[t]{7.5cm}
\begin{center}
\includegraphics[width=7.5cm,clip]{figure2.eps}
\caption[Short caption for figure 2]{\label{labelFig2} Long caption figure 2.}
\end{center}
\end{minipage}
\end{figure}
And it works!
Goalie_Ca
Nov6-04, 01:56 PM
try checking into various packages such as placeins.
Figures are "floats" so you really have to force it to go somewhere using tables or whatever.
vBulletin® v3.8.7, Copyright ©2000-2012, vBulletin Solutions, Inc.