Change LaTeX caption language

三世轮回 提交于 2019-12-10 13:45:35

问题


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

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!