Add something like this to your preamble. This particular one will give you italic captions.
If you were to replace \itshape with \small\bfseries you'll get... guess what?
Angus
%% Set the captions to be italic \newcommand\myCaption[1]{\itshape\refstepcounter{figure}% \begin{center}\figurename\ \thefigure :\ #1\end{center}\normalfont} \let\caption\myCaption
This generaly works, but it affects also tables float insert (thats good but it changes 'Table 1: blah blah' caption to 'Figure 1: blah blah' caption). How can I change this behavior?
Regards wo
