Graphics, Figures & Tablesplacing margins next to a figure

Information and discussion about graphics, figures & tables in LaTeX documents.
Post Reply
yotama9
Posts: 61
Joined: Thu Sep 24, 2009 2:59 pm

placing margins next to a figure

Post by yotama9 »

Hi guys.

Is there a way to place margins next to a figure? As for now, I do the following:

Code: Select all

\begin{figure}
...
\end{figure}
\marginpar{some text}
And I get the margin in some other location before the figure.


Thanks.

Recommended reading 2024:

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

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

placing margins next to a figure

Post by frabjous »

You might try the marginnote package:

Code: Select all

\documentclass{article}
\usepackage{marginnote}
\begin{document}
\begin{figure}
...
\marginnote{note}
\end{figure}
\end{document}
Post Reply