Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Margin Figures in Latex

Tags:

latex

figure

I would like to put some figures in margin in my latex documents. I want them to be non-float. Is there any package for it.

thanks

like image 998
ahmet nurlu Avatar asked Jan 31 '10 06:01

ahmet nurlu


1 Answers

Use the caption package:

\usepackage{caption}

and e.g.

\marginpar{%
  \includegraphics[width=\marginparwidth]{myfile}
  \captionof{figure}{The caption}
}
like image 92
Ramashalanka Avatar answered Sep 17 '22 20:09

Ramashalanka