更改“论文”文档中的图形标题名称

更改“论文”文档中的图形标题名称

有谁知道为什么这种改变图形命名的方法不起作用论文类型文档?我使用的是 babel,所有其他标题都可以正常翻译,除了“图”,无论我做什么,它都停留在“图”。我尝试使用更新命令宏但它不起作用:

\documentclass[12pt,a4paper,twoside,openright]{thesis}
\usepackage{graphicx}
\usepackage[slovene]{babel}

\addto\captionsslovene{\renewcommand{\figurename}{Slika}}

\begin{document}

\begin{figure}
\centering
\includegraphics[scale=1]{picture.png}
\caption{Random caption}
\end{figure}

\end{document}

如果我切换到文档类型它按预期工作,但我真的想把这个文档保留在论文格式,利用所有好的东西,使我能够正确地格式化我的工作。

答案1

尝试重新定义,\figureshortname而不是或除了\figurename

\documentclass[12pt,a4paper,twoside,openright]{thesis}
\usepackage{graphicx}
\usepackage[slovene]{babel}

\addto\captionsslovene{\renewcommand{\figureshortname}{Slika}}

\begin{document}

\begin{figure}
\centering
%\includegraphics[scale=1]{picture.png}
\caption{Random caption}
\end{figure}

\end{document}

相关内容