11

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

SamB
  • 9,039
  • 5
  • 49
  • 56
ahmet nurlu
  • 111
  • 1
  • 1
  • 4

1 Answers1

17

Use the caption package:

\usepackage{caption}

and e.g.

\marginpar{%
  \includegraphics[width=\marginparwidth]{myfile}
  \captionof{figure}{The caption}
}
Will Robertson
  • 62,540
  • 32
  • 99
  • 117
Ramashalanka
  • 8,564
  • 1
  • 35
  • 46