问题
How could I change the default language so that I get something else instead of "Table" or "Figure" before my captions?
回答1:
\usepackage[francais]{babel}
回答2:
You can also redefine \tablename
and \figurename
.
回答3:
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.
回答4:
You can redefine \figurename
and \tablename
by using \renewcommand
. For example, you can do this for Swedish:
\renewcommand{\figurename}{Figur}
\renewcommand{\tablename}{Tabell}
来源:https://stackoverflow.com/questions/2709562/change-latex-caption-language