Remzi Seker wrote:
> Now, I tried \renewcommand{\figurename}{Fig}
> but nothing happens.
Are you using Babel? If so, that would explain why nothing happens.
Babel redefines the names at the end of the preamble, so that would
override your changes.
There is a way to redefine the names in the preamble. For example, when
using Spanish:
\addto\captionsspanish{
\renewcommand{\figurename}%
{Fig}%
}
There's more about this in the TeX FAQ at:
http://www.tex.ac.uk/faq
Look for 'How to change LaTeX's "fixed names"' under Macro Programming.
HTH,
Roberto