Wang Xiangqi wrote: > Since package "caption" doesn't work under beamer class. Then how to > remove (or change) the text "Figure" in the caption field of figures.
if you use babel: \AtBeginDocument{% \addto\captions<your language>{% \renewcommand{\figurename}{foo}% \renewcommand{\tablename}{bar}% } } else \AtBeginDocument{% \renewcommand{\figurename}{foo}% \renewcommand{\tablename}{bar}% } Jürgen