Graphics, Figures & Tablesspace between figures

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
rajini
Posts: 64
Joined: Mon Mar 22, 2010 2:27 pm

space between figures

Post by rajini »

Hello all,
I want to place one figure (spanned textwidth) top, and just below that figure two figures side by side. And all these three figures will have a single caption...I succeeded in doing..But when i tried to adjust the space between the top and bottom two figure i failed..if i increase using

Code: Select all

\vspace{}
command what happens is the space between caption and figures is increasing...why is happens like this:
my snippets/codes below:

Code: Select all

\begin{figure}[!t]
     \begin{minipage}[h]{1.0\linewidth}
        \centering
        \includegraphics[width=\linewidth]{xomp}
     \end{minipage}
\vspace{0.00mm}
    \begin{minipage}[h]{0.5\linewidth}
       \centering
       \includegraphics[width=\linewidth]{ins}
     \end{minipage}
\hspace{0.00mm}
    \begin{minipage}[h]{0.5\linewidth}
       \centering
       \includegraphics[width=\linewidth]{spc}
    \end{minipage}
\caption{Top: schematic sketch. Bottom: two figures.}
\label{fig:furt}
\end{figure}
the first

Code: Select all

\vspace{0.00mm}
in the above snippets making problems..if you increase the value...the space between the caption and figure increases but not the space between upper fig. and lower two figures..
thanks.

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

space between figures

Post by gmedina »

Hi,

simply leave a blank line before and another one after the \vspace command.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
rajini
Posts: 64
Joined: Mon Mar 22, 2010 2:27 pm

space between figures

Post by rajini »

Hi Gmedina,

thanks problem solved. One blank line before and after the first

Code: Select all

\vspace{0.00mm}
command is helpful.
Post Reply