Graphics, Figures & Tablesleft margin figure float

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
codicedave
Posts: 2
Joined: Wed Jun 17, 2009 10:57 am

left margin figure float

Post by codicedave »

Hi all,

I am puzzling over the figure floats placement.

In fact as you can see from picture here
Fig6-4.png
Fig6-4.png (165.81 KiB) Viewed 3560 times
I would like to put the figure on the left without resizing the figure itself but I would like to exploit the left blank margin on the page.

I tried many ways unsuccessfully (changing the width argument in many way)..the current latex code for this figure is:

Code: Select all

\begin{figure}
  \includegraphics[width=1\paperwidth]{imagesnews/MeaningDiagram}
  \caption{The class \texttt{Meaning.}\label{fig:MeaningAspects}
  \texttt{\label{fig:The-class-Meaning.}}}
\end{figure}
Any help please?
Thanks guys

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

left margin figure float

Post by localghost »

You are already aware of the fact that your image doesn't fit the text width? You have three possible solutions.
  • Adapt the type area with geometry.
  • Search the forum or the epslatex document for the narrow environment.
  • Put the graphics in a special box that centers it automatically.

    Code: Select all

    \begin{figure}[!ht]
      \makebox[\textwidth]{%
        \includegraphics[scale=0.75]{imagesnews/MeaningDiagram}
      }
      \caption{The class \texttt{Meaning.}\label{fig:MeaningAspects} 
    \end{figure}
Although the last option is the easiest one, you should think about adapting the type area in order to make the figure not disturb the total appearance of the document.


Best regards and welcome to the board
Thorsten
codicedave
Posts: 2
Joined: Wed Jun 17, 2009 10:57 am

Re: left margin figure float

Post by codicedave »

Thanks Thorsten

It seems to work so far.

Thanks
Post Reply