Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Change LaTeX caption language

Tags:

latex

caption

How could I change the default language so that I get something else instead of "Table" or "Figure" before my captions?

like image 880
Olondon Avatar asked Apr 25 '10 19:04

Olondon


3 Answers

\usepackage[francais]{babel}
like image 143
lhf Avatar answered Sep 21 '22 08:09

lhf


You can change your document's language using babel package. The captions will be updated automatically.

As a bonus, you'll get the correct hyphenation for the chosen language.

like image 38
Vlad Avatar answered Sep 18 '22 08:09

Vlad


You can redefine \figurename and \tablename by using \renewcommand. For example, you can do this for Swedish:

\renewcommand{\figurename}{Figur}
\renewcommand{\tablename}{Tabell}
like image 24
Donald Duck Avatar answered Sep 17 '22 08:09

Donald Duck