ahmet nurlu
ahmet nurlu

Reputation: 111

Margin Figures in Latex

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

Upvotes: 11

Views: 17286

Answers (1)

Ramashalanka
Ramashalanka

Reputation: 8864

Use the caption package:

\usepackage{caption}

and e.g.

\marginpar{%
  \includegraphics[width=\marginparwidth]{myfile}
  \captionof{figure}{The caption}
}

Upvotes: 17

Related Questions