更改纸质文件类别中的图形名称?

更改纸质文件类别中的图形名称?

我想更改环境中标题的图形名称和表格名称paper。特别是,我想将 Fig. 和 Tab. 都更改为 Figure and Table。问题在这里回答不适用于纸质文件类。

例如:

\documentclass[11pt]{article}
\renewcommand{\figurename}{hello}
\begin{document}

\begin{figure}
    \caption{there}
\end{figure}

\end{document}

成功运行。然而,

\documentclass[11pt]{paper}
\renewcommand{\figurename}{hello}
\begin{document}

\begin{figure}
    \caption{there}
\end{figure}

\end{document}

才不是。

答案1

该类用于\figureshortname缩写Fig.,因此您需要重新定义它:

\documentclass[11pt]{paper}
\renewcommand*\figurename{hello}
\renewcommand*\figureshortname{hi}
\begin{document}

\begin{figure}
    \caption{there}
\end{figure}

\end{document}

简称

相关内容