22 Apr 2009
LaTeX: how to put frames to figures
If you want to put your figure inside a box in LaTeX, one simple way is to use the epslatex package.
To do that, first of all import the package:
\usepackage{graphicx}
then use the fbox command, for example:
\begin{figure} \centering \fbox{\includegraphics{logo.png}} \end{figure}
(Source: LaTeX Community)
