Im using this function to be able to post figures in my report:
\
Code: Select all
newcommand{\myfig}[3][0]{
\begin{center}
\vspace{1.5cm}
\includegraphics[width=#3\hsize,angle=#1]{#2}
\nobreak\medskip
\end{center}}
\newcommand{\mycaption}[1]{
\vspace{0.1cm}
\begin{quote}
{\begin{center}{\sc Figure} \arabic{figure}: #1\end{center}}
\end{quote}
\vspace{0.5cm}
\stepcounter{figure}
}
Thanks!