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

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
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